-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.26 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.26 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "webpack-demo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "rimraf dist && webpack --env.production --progress && copyfiles static/** dist/",
"old-build": "rimraf dist && webpack -p && copyfiles static/** dist/",
"old-serve-build": "http-server dist -p 3001",
"serve-build": "node server.js",
"lint": "eslint --ext .js --ext .jsx app -o ./lint.html -f html",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:update": "jest --updateSnapshot",
"analyze": "webpack-dev-server --history-api-fallback --env.analyze --progress",
"start": "webpack-dev-server --history-api-fallback --progress"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-react": "^6.24.1",
"compression-webpack-plugin": "^1.0.0",
"copyfiles": "^1.2.0",
"css-loader": "^0.26.1",
"enzyme": "^2.8.2",
"enzyme-to-json": "^1.5.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.1",
"eslint-plugin-react": "^7.0.1",
"express": "^4.15.0",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.10.1",
"html-webpack-plugin": "^2.29.0",
"http-server": "^0.9.0",
"jest": "^19.0.2",
"postcss": "^6.0.6",
"postcss-cssnext": "^3.0.0",
"postcss-import": "^10.0.0",
"postcss-loader": "^2.0.6",
"raw-loader": "^0.5.1",
"react-test-renderer": "^15.5.4",
"redux-devtools": "^3.3.2",
"redux-thunk": "^2.2.0",
"rimraf": "^2.6.1",
"style-loader": "^0.13.1",
"uglifyjs-webpack-plugin": "^1.0.0-beta.2",
"url-loader": "^0.5.8",
"webpack": "^3.4.1",
"webpack-bundle-analyzer": "^2.8.3",
"webpack-dev-server": "^2.6.1"
},
"dependencies": {
"font-awesome": "^4.7.0",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.4",
"moment": "^2.17.1",
"prop-types": "^15.5.10",
"purecss": "^0.6.2",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-redux": "^5.0.3",
"react-router-dom": "^4.1.2",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0"
}
}