-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.7 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
{
"name": "console-output-experiment",
"version": "0.0.1",
"description": "Web console experiment.",
"dependencies": {
"react": "^0.14.2",
"react-dom": "^0.14.2",
"react-redux": "^4.0.0",
"redux": "^3.0.0"
},
"devDependencies": {
"appcache-webpack-plugin": "^1.2.0",
"babel": "^6.0.0",
"babel-core": "^6.0.0",
"babel-eslint": "^4.1.2",
"babel-loader": "^6.0.0",
"babel-plugin-react-transform": "^2.0.0",
"babel-plugin-transform-react-constant-elements": "6.3.13",
"babel-plugin-transform-react-inline-elements": "6.3.13",
"babel-plugin-transform-react-remove-prop-types": "0.1.0",
"babel-preset-es2015": "^6.0.0",
"babel-preset-react": "^6.0.0",
"babel-preset-react-hmre": "1.0.1",
"babel-preset-stage-2": "^6.0.0",
"cross-env": "1.0.6",
"css-loader": "^0.23.0",
"enzyme": "^2.1.0",
"eslint": "^1.4.1",
"eslint-config-airbnb": "1.0.0",
"eslint-plugin-react": "^3.3.2",
"expect": "^1.15.2",
"extract-text-webpack-plugin": "0.9.1",
"file-loader": "^0.8.4",
"html-webpack-plugin": "^1.6.1",
"json-loader": "^0.5.2",
"mocha": "^2.4.5",
"object.assign": "^4.0.1",
"react-addons-test-utils": "^0.14.7",
"react-transform-hmr": "^1.0.1",
"style-loader": "^0.13.0",
"url-loader": "^0.5.6",
"webpack": "^1.12.1",
"webpack-dev-server": "^1.11.0"
},
"scripts": {
"lint": "eslint .",
"test": "mocha --compilers js:babel-core/register --recursive",
"test:watch": "npm test -- --watch",
"start": "cross-env NODE_ENV=development node server.dev.js",
"build": "npm run test && cross-env NODE_ENV=production webpack --config webpack.prod.config.js --progress --colors -p"
}
}