-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.66 KB
/
Copy pathpackage.json
File metadata and controls
126 lines (126 loc) · 3.66 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "madadata-webpack-starter",
"version": "0.0.1",
"description": "webpack starter",
"main": "build/main.js",
"engine": {
"node": ">=6.0.0"
},
"scripts": {
"commit": "git-cz",
"run:prod": "node server.js",
"clean": "rimraf dist",
"build:webpack": "cross-env NODE_ENV=production webpack --config webpack.config.prod.js",
"build": "npm run clean && npm run lint && npm run build:webpack",
"start": "./node_modules/.bin/babel-node devServer.js",
"coverage": "NODE_ENV=testing ./node_modules/.bin/nyc --extension .jsx mocha",
"lint": "eslint src",
"test": "NODE_ENV=testing ./node_modules/.bin/mocha test",
"test:watch": "npm run test -- --watch",
"test:karma": "NODE_ENV=testing ./node_modules/.bin/karma start karma.config.js"
},
"repository": {
"type": "git",
"url": "git@github.com:Madadata/webpack-starter.git"
},
"keywords": [
"webpack",
"starter"
],
"author": "Caiyao Mai",
"license": "MIT",
"bugs": {
"url": "https://github.com/Madadata/webpack-starter/issues"
},
"homepage": "https://github.com/Madadata/webpack-starter#readme",
"devDependencies": {
"autoprefixer": "^6.3.3",
"babel": "^6.5.2",
"babel-cli": "^6.6.5",
"babel-core": "^6.7.7",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.7.2",
"commitizen": "2.8.2",
"cross-env": "^2.0.0",
"css-loader": "^0.23.1",
"cssnano": "^3.5.2",
"cz-conventional-changelog": "1.1.6",
"enzyme": "^2.2.0",
"eslint": "^3.1.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-loader": "^1.3.0",
"eslint-plugin-import": "^1.6.0",
"eslint-plugin-jsx-a11y": "^2.0.1",
"eslint-plugin-react": "^5.2.2",
"eventsource-polyfill": "^0.9.6",
"expect": "^1.18.0",
"file-loader": "^0.9.0",
"ghooks": "1.3.2",
"ignore-styles": "^4.0.0",
"istanbul-instrumenter-loader": "^0.2.0",
"jsdom": "^9.4.1",
"karma": "^1.1.1",
"karma-babel-preprocessor": "^6.0.1",
"karma-chrome-launcher": "^1.0.1",
"karma-coverage": "^1.1.0",
"karma-mocha": "^1.1.1",
"karma-mocha-reporter": "^2.0.2",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sinon": "^1.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "^1.7.0",
"lost": "^7.0.3",
"mocha": "^2.4.5",
"nyc": "^7.0.0",
"phantomjs-polyfill": "0.0.2",
"phantomjs-prebuilt": "^2.1.7",
"postcss": "^5.0.19",
"postcss-import": "^8.0.2",
"postcss-loader": "^0.9.1",
"precss": "^1.4.0",
"react-addons-test-utils": "^15.0.1",
"react-transform-hmr": "^1.0.4",
"rimraf": "^2.5.2",
"sinon": "^1.17.3",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^1.13.0",
"webpack-dev-middleware": "^1.5.1",
"webpack-hot-middleware": "^2.9.1"
},
"dependencies": {
"connect-redis": "^3.0.2",
"express": "^4.13.4",
"express-session": "^1.13.0",
"helmet": "^2.1.1",
"history": "^3.0.0",
"lodash": "^4.11.1",
"moment": "^2.13.0",
"morgan": "^1.7.0",
"normalize.css": "^4.1.1",
"react": "^15.0.1",
"react-dom": "^15.0.1",
"react-redux": "^4.4.5",
"react-router": "^2.3.0",
"react-router-redux": "^4.0.4",
"redux": "^3.5.2",
"redux-logger": "^2.6.1",
"redux-saga": "^0.11.0",
"redux-thunk": "^2.0.1",
"reselect": "^2.5.1"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npm run coverage"
}
}
}