-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.88 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "address-book",
"version": "1.0.0",
"description": "project",
"main": "./AddressBook/dist/index.js",
"author": "Dest",
"license": "MIT",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --mode development",
"build": "cross-env NODE_ENV=production webpack --mode production"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/plugin-transform-arrow-functions": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@babel/runtime": "^7.3.1",
"@babel/runtime-corejs2": "^7.3.1",
"@svgr/webpack": "^4.1.0",
"@types/axios": "^0.14.0",
"@types/node": "^11.13.2",
"@types/react": "^16.8.13",
"@types/react-dom": "^16.8.3",
"@types/styled-components": "^4.1.15",
"autoprefixer": "^9.4.7",
"babel-loader": "^8.0.5",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-styled-components": "^1.10.0",
"copy-webpack-plugin": "^5.0.0",
"cross-env": "^5.2.0",
"css-loader": "^2.1.0",
"cssnano": "^4.1.8",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^3.0.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"json-loader": "^0.5.7",
"mini-css-extract-plugin": "^0.5.0",
"mobx-react-devtools": "^6.0.3",
"node-static": "^0.7.10",
"postcss": "^7.0.14",
"postcss-cli": "^6.1.1",
"postcss-cssnext": "^3.1.0",
"postcss-discard-comments": "^2.0.4",
"postcss-font-magician": "^2.1.0",
"postcss-fontpath": "^1.0.0",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.5.0",
"precss": "^4.0.0",
"prettier": "1.16.4",
"raw-loader": "^0.5.1",
"style-loader": "^0.23.1",
"ts-loader": "^5.3.3",
"uglifyjs-webpack-plugin": "^2.1.1",
"url-loader": "^0.6.2",
"webpack": "^4.29.2",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14",
"webpack-merge": "^4.1.0"
},
"dependencies": {
"axios": "^0.18.0",
"caniuse-api": "^3.0.0",
"classnames": "^2.2.6",
"final-form": "^4.12.0",
"final-form-arrays": "^1.1.2",
"mobx": "^5.9.0",
"mobx-react": "^5.4.3",
"mobx-state-tree": "^3.14.0",
"normalize.css": "^7.0.0",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"react-final-form": "^4.1.0",
"react-final-form-arrays": "2.0.1",
"react-hot-loader": "^4.6.5",
"styled-components": "^4.2.0",
"typescript": "^3.4.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}