-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
39 lines (39 loc) · 1.12 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "react-webpack-starter",
"version": "1.0.0",
"description": "Basic packages and scripts to start app developing in react, redux and webpack",
"main": "webpack.config.js",
"scripts": {
"start": "yarn workspace app start",
"serve": "yarn workspace server start",
"build": "turbo run build",
"test": "turbo run test",
"test:e2e": "yarn build; yarn workspace e2e start",
"lint": "yarn lint:prettier; yarn lint:versions",
"lint:prettier": "turbo run lint",
"lint:versions": "syncpack list-mismatches",
"stats": "yarn workspace app stats"
},
"repository": {
"type": "git",
"url": "git+https://github.com/artemdemo/react-webpack-starter.git"
},
"author": "Artem Demo",
"license": "MIT",
"bugs": {
"url": "https://github.com/artemdemo/react-webpack-starter/issues"
},
"homepage": "https://github.com/artemdemo/react-webpack-starter#readme",
"workspaces": {
"packages": [
"packages/*"
]
},
"devDependencies": {
"concurrently": "^7.3.0",
"syncpack": "^8.2.4",
"turbo": "^1.0.0",
"vitest": "^0.24.3"
},
"packageManager": "[email protected]"
}