-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
32 lines (32 loc) · 955 Bytes
/
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
{
"name": "redux-middleware-technique",
"private": true,
"scripts": {
"init": "yarn",
"start": "echo 'try: yarn react'",
"react": "cross-env PORT=4444 yarn workspace @implementations/react start",
"vue": "cross-env PORT=5555 yarn workspace @implementations/vue start",
"slimjs": "cross-env PORT=9000 yarn workspace slimjs-client-boilerplate start",
"angular": "cross-env PORT=4200 yarn workspace angular start",
"build:react": "yarn workspace @implementations/react build",
"build:vue": "yarn workspace @implementations/vue build",
"build:slimjs": "yarn workspace slimjs-client-boilerplate build",
"build:angular": "yarn workspace angular build"
},
"devDependencies": {
"webpack-cli": "^3.3.0"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"workspaces": [
"packages/*",
"implementations/*"
],
"dependencies": {
"cross-env": "*",
"cwd": "^0.10.0"
}
}