-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 2.46 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "wfh-frontend",
"version": "1.0.0",
"config": {
"buildDir": "./build",
"buildDirTests": "./build_tests",
"devHost": "localhost",
"devPort": 8000
},
"scripts": {
"build": "NODE_ENV=production npm run webpack",
"clean": "rimraf $npm_package_config_buildDir && mkdir $npm_package_config_buildDir",
"env": "env",
"lint": "eslint --ext .js --ext .jsx ./app ./webpack && echo No linting errors.",
"pretest-travis": "npm install && npm run lint",
"start": "NODE_ENV=development node dev-server ./webpack/config",
"webpack": "webpack --colors --progress --config ./webpack/config"
},
"dependencies": {
"deep-equal": "^1.0.1",
"es6-promise": "^3.0.2",
"fetch": "^0.3.6",
"gravatar": "^1.3.1",
"normalize.css": "^3.0.3",
"qs": "^5.2.0",
"react": "^0.14.0",
"react-dom": "^0.14.0",
"react-redux": "^4.0.0",
"react-router": "^1.0.0-rc2",
"redux": "^3.0.4",
"redux-thunk": "^1.0.0",
"whatwg-fetch": "^0.9.0"
},
"devDependencies": {
"autoprefixer-core": "^5.2.1",
"babel-core": "^5.8.3",
"babel-eslint": "^3.1.23",
"babel-loader": "^5.3.1",
"babel-plugin-rewire": "^0.1.8",
"babel-runtime": "^5.6.15",
"chai": "^3.0.0",
"css-loader": "^0.15.2",
"eslint": "^1.9.0",
"eslint-config-pebblecode": "^1.0.0",
"eslint-plugin-react": "^2.6.4",
"extract-text-webpack-plugin": "^0.8.2",
"file-loader": "^0.8.4",
"flowcheck": "^0.2.7",
"flowcheck-loader": "^1.0.0",
"glob": "^5.0.13",
"history": "^1.13.0",
"html-loader": "^0.3.0",
"json-loader": "^0.5.2",
"karma": "^0.12.37",
"karma-chrome-launcher": "^0.2.0",
"karma-cli": "0.1.0",
"karma-mocha": "^0.2.0",
"karma-mocha-reporter": "^1.0.2",
"karma-phantomjs-launcher": "^0.2.0",
"karma-sinon": "^1.0.4",
"karma-source-map-support": "^1.0.0",
"karma-sourcemap-loader": "^0.3.5",
"karma-webpack": "^1.5.1",
"lodash": "^3.10.0",
"mocha": "^2.2.5",
"mocha-loader": "^0.7.1",
"node-libs-browser": "^0.5.2",
"node-sass": "^3.2.0",
"opn": "^3.0.2",
"phantomjs": "^1.9.17",
"postcss-loader": "^0.5.1",
"react-hot-loader": "^1.2.8",
"rimraf": "^2.4.1",
"sass-loader": "^1.0.2",
"sinon": "^1.15.4",
"source-map-support": "^0.3.2",
"style-loader": "^0.12.3",
"template-html-loader": "0.0.3",
"webpack": "^1.10.1",
"webpack-dev-server": "^1.10.1"
},
"engines": {
"node": ">=0.12.0"
}
}