forked from CaptainGlac1er/StudentHomeworkProject
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.91 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
{
"name": "react-webpack2",
"version": "1.0.0",
"description": "boilerplate for a webpack2 react project",
"main": "server.js",
"scripts": {
"start": "NODE_ENV=development BABEL_ENV=development node ./server.js",
"build": "NODE_ENV=production BABEL_ENV=production ./node_modules/.bin/webpack --config webpack.config.prod.js",
"debug": "DEBUG=true npm run build",
"lint": "eslint --ext .js --ext .jsx app",
"validate": "npm ls"
},
"pre-commit": [
"validate",
"lint"
],
"author": "Dylan Vuz",
"license": "MIT",
"dependencies": {
"compression": "^1.6.2",
"express": "^4.14.0",
"material-ui": "^0.17.1",
"moment": "^2.18.1",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.3",
"react-router-dom": "^4.0.0",
"react-tap-event-plugin": "^2.0.1",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"abracadabra": "^0.2.1",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-react-remove-prop-types": "^0.3.2",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"css-loader": "^0.26.1",
"eslint": "^3.13.1",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"extract-text-webpack-plugin": "^2.0.0-rc.3",
"file-loader": "^0.9.0",
"html-webpack-inline-chunk-plugin": "^1.1.1",
"html-webpack-plugin": "^2.26.0",
"node-sass": "^4.3.0",
"raw-loader": "^0.5.1",
"redux-devtools": "^3.3.2",
"resolve-url-loader": "^1.6.1",
"sass-loader": "^4.1.1",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^2.2.1",
"webpack-bundle-analyzer": "^2.3.0",
"webpack-dev-server": "^2.3.0"
}
}