-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.59 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
{
"name": "react_sample_app",
"version": "1.0.0",
"description": "A sample React application",
"author": "James Christie <[email protected]>",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "TBD"
},
"scripts": {
"build": "webpack --config webpack.build.config.js --optimize-minimize",
"ci": "npm run lint && npm run test",
"lint": "eslint \"src/**/*.jsx\" \"spec/**/*.spec.js\"",
"start": "webpack-dev-server --config webpack.config.js --hot --inline",
"test": "karma start karma.config.js",
"test:watch": "karma start karma.watch.config.js"
},
"dependencies": {
"react": "15.6.1",
"react-dom": "15.6.1"
},
"devDependencies": {
"babel-cli": "6.24.1",
"babel-core": "6.25.0",
"babel-loader": "7.1.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"css-loader": "0.28.4",
"eslint": "3.19.0",
"eslint-config-standard": "10.2.1",
"eslint-plugin-import": "2.3.0",
"eslint-plugin-jasmine": "2.5.0",
"eslint-plugin-node": "5.0.0",
"eslint-plugin-promise": "3.5.0",
"eslint-plugin-react": "7.1.0",
"eslint-plugin-standard": "3.0.1",
"jasmine": "2.6.0",
"jasmine-node": "1.14.5",
"karma": "1.7.0",
"karma-babel-preprocessor": "6.0.1",
"karma-chrome-launcher": "2.1.1",
"karma-jasmine": "1.1.0",
"karma-webpack": "2.0.3",
"karma-source-map-support": "1.2.0",
"node-sass": "4.5.3",
"react-addons-test-utils": "15.6.0",
"sass-loader": "6.0.6",
"style-loader": "0.18.2",
"webpack": "2.2.0",
"webpack-dev-server": "2.5.0"
}
}