This repository was archived by the owner on May 9, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.8 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.8 KB
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
{
"name": "react-sample",
"version": "1.0.0",
"description": "Sample project for react test",
"scripts": {
"start": "npm run clean && webpack-dev-server --config config/webpack.dev.js --inline --port 7000",
"start:hmr": "npm run start -- --hot",
"build": "npm run clean && node --max_old_space_size=4096 webpack --config config/webpack.prod.js --profile --bail",
"lint": "eslint .",
"clean": "rimraf build"
},
"author": "",
"license": "ISC",
"dependencies": {
"core-js": "3.1.3",
"object-assign": "4.1.1",
"prop-types": "15.7.2",
"raf": "3.4.1",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-hot-loader": "4.9.0",
"react-loadable": "5.5.0",
"react-router": "5.0.0",
"react-router-dom": "5.0.0",
"regenerator-runtime": "0.13.2",
"whatwg-fetch": "3.0.0"
},
"devDependencies": {
"@babel/core": "7.4.5",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/preset-env": "7.4.5",
"@babel/preset-react": "7.0.0",
"autoprefixer": "9.5.1",
"babel-eslint": "10.0.1",
"babel-loader": "8.0.6",
"babel-plugin-transform-es3-member-expression-literals": "6.22.0",
"babel-plugin-transform-es3-property-literals": "6.22.0",
"compression-webpack-plugin": "2.0.0",
"css-loader": "2.1.1",
"eslint": "5.16.0",
"eslint-loader": "2.1.2",
"eslint-plugin-react": "7.13.0",
"file-loader": "3.0.1",
"html-webpack-plugin": "3.2.0",
"less": "3.9.0",
"less-loader": "5.0.0",
"mini-css-extract-plugin": "0.7.0",
"postcss-flexbugs-fixes": "4.1.0",
"postcss-loader": "3.0.0",
"rimraf": "2.6.3",
"script-ext-html-webpack-plugin": "2.1.3",
"style-loader": "0.23.1",
"webpack": "4.32.2",
"webpack-cli": "3.3.2",
"webpack-dev-server": "3.5.1",
"webpack-merge": "4.2.1"
}
}