-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
48 lines (48 loc) · 1.38 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
{
"name": "react-mobx-ts-antd",
"version": "0.1.0",
"scripts": {
"dev": "NODE_ENV=development webpack-dev-server",
"build": "NODE_ENV=production webpack",
"git-push": "git add . && git commit && git push"
},
"dependencies": {
"antd": "^3.19.2",
"ev-ui": "^0.4.2",
"mobx": "^5.10.0",
"mobx-react": "^6.0.3",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router-dom": "^5.0.1",
"sass": "^1.22.1",
"sass-loader": "^7.1.0",
"styled-components": "^4.2.1"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@types/react": "^16.8.19",
"@types/react-dom": "^16.8.4",
"@types/react-router-dom": "^4.3.3",
"@types/styled-components": "^4.1.16",
"babel-loader": "^8.0.6",
"babel-plugin-import": "^1.12.0",
"css-loader": "2.1.1",
"file-loader": "3.0.1",
"html-webpack-plugin": "3.2.0",
"mini-css-extract-plugin": "^0.7.0",
"postcss-loader": "^3.0.0",
"postcss-scss": "^2.0.0",
"style-loader": "0.23.1",
"ts-loader": "^6.0.2",
"typescript": "^3.5.1",
"url-loader": "1.1.2",
"webpack": "4.33.0",
"webpack-cli": "^3.2.2",
"webpack-dev-server": "3.5.1"
}
}