-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.68 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "monorepo-study",
"version": "1.0.0",
"private": true,
"license": "MIT",
"scripts": {
"prepare": "npm-run-all bootstrap build",
"bootstrap": "lerna bootstrap",
"clean": "lerna clean --yes",
"build": "lerna run build",
"test": "lerna run test",
"lint": "lerna run lint"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.1.0",
"@types/express": "^4.16.0",
"@types/jest": "^24.0.15",
"@types/react": "^16.7.18",
"@types/react-dom": "^16.0.11",
"@types/react-native": "^0.57.24",
"@types/react-navigation": "^3.0.2",
"@types/react-test-renderer": "^16.8.2",
"@types/storybook__addon-knobs": "^5.0.2",
"@types/storybook__react": "^4.0.2",
"@typescript-eslint/eslint-plugin": "^1.11.0",
"@typescript-eslint/parser": "^1.11.0",
"babel-loader": "^8.0.5",
"eslint": "^5.11.1",
"eslint-config-prettier": "^6.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.12.1",
"eslint-plugin-standard": "^4.0.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.8.0",
"lerna": "^3.15.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"ts-node": "^8.3.0",
"typescript": "3.5.3",
"webpack": "^4.28.3",
"webpack-cli": "^3.2.0",
"webpack-dev-server": "^3.1.14"
}
}