-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.5 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
{
"name": "webpack-config-example",
"version": "1.0.0",
"description": "A sample of a strong webpack configuration",
"main": "index.js",
"scripts": {
"test": "karma start",
"build": "webpack",
"start": "node ./server/index.js"
},
"keywords": [
"Webpack",
"javascript"
],
"author": "Nicolas Pirotte",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.7.6",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"body-parser": "^1.15.0",
"es6-promise": "^3.1.2",
"eslint": "^2.8.0",
"eslint-config-standard": "^5.1.0",
"eslint-loader": "^1.3.0",
"eslint-plugin-promise": "^1.1.0",
"eslint-plugin-react": "^5.0.1",
"eslint-plugin-standard": "^1.3.2",
"express": "^4.13.4",
"express-rest-generator": "^1.0.2",
"extract-text-webpack-plugin": "^1.0.1",
"jasmine-core": "^2.4.1",
"karma": "^0.13.22",
"karma-coverage": "^0.5.5",
"karma-es6-shim": "^0.2.3",
"karma-jasmine": "^0.3.8",
"karma-phantomjs-launcher": "^1.0.0",
"karma-phantomjs-shim": "^1.3.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"live-server": "^0.9.2",
"nedb": "^1.8.0",
"phantomjs-prebuilt": "^2.1.7",
"react-addons-test-utils": "^15.0.1",
"webpack": "^1.13.0",
"webpack-config": "^4.0.0",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"isomorphic-fetch": "^2.2.1",
"react": "^15.0.1",
"react-dom": "^15.0.1"
}
}