-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.65 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
{
"name": "front-end-exercise",
"version": "1.0.0",
"description": "github issue viewer",
"engines": {
"node": "5.0.0"
},
"scripts": {
"postinstall": "webpack --config ./webpack.production-config.js --progress --colors",
"start": "node server.js",
"lint": "eslint src",
"test": "karma start test/karma.conf.js --single-run --no-auto-watch",
"test-watch": "karma start test/karma.conf.js --auto-watch --no-single-run"
},
"license": "MIT",
"private": true,
"devDependencies": {
"babel-eslint": "^4.1.3",
"chai": "^3.5.0",
"eslint": "^2.2.0",
"eslint-plugin-react": "^3.6.2",
"karma": "^0.13.21",
"karma-chai": "^0.1.0",
"karma-chai-sinon": "^0.1.5",
"karma-mocha": "^0.2.2",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sinon": "^1.0.4",
"karma-webpack": "^1.7.0",
"mocha": "^2.4.5",
"phantomjs-prebuilt": "^2.1.4",
"react-addons-test-utils": "^0.14.7",
"react-hot-loader": "^1.3.0",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"webpack-dev-server": "^1.12.1"
},
"dependencies": {
"babel-core": "^6.0.20",
"babel-loader": "^6.0.1",
"babel-preset-es2015": "^6.0.15",
"babel-preset-react": "^6.0.15",
"babel-preset-stage-0": "^6.0.15",
"css-loader": "^0.23.1",
"component-truncate": "^1.0.0",
"es6-promise": "^3.1.2",
"express": "^4.13.4",
"exports-loader": "^0.6.3",
"imports-loader": "^0.6.5",
"node-sass": "^3.4.2",
"react": "^0.14.0",
"react-dom": "^0.14.0",
"react-router": "^2.0.0",
"sass-loader": "^3.1.2",
"style-loader": "^0.13.0",
"webpack": "^1.12.2",
"whatwg-fetch": "^0.11.0"
}
}