-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 810 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 810 Bytes
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
{
"name": "root",
"private": false,
"scripts": {
"watch": "lerna exec --parallel -- yarn watch",
"build": "lerna run build",
"unlink": "lerna run unlink",
"link": "lerna run link",
"release": "lerna publish",
"bootstrap": "lerna bootstrap",
"lint": "./node_modules/.bin/eslint --fix packages"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "8",
"babel-preset-minify": "^0.5.0",
"cross-env": "^5.2.0",
"lerna": "^3.15.0"
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/polyfill": "^7.4.4",
"eslint": "^6.3.0",
"react-router-dom": "^5.0.1",
"react-router-redux": "^4.0.8"
}
}