-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.35 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
{
"name": "react-kostra",
"version": "1.0.0",
"description": "",
"engines": {
"node": "6.x"
},
"scripts": {
"postinstall": "npm run build",
"build": "node ./server/build",
"start": "npm run server",
"server": "node ./server/server",
"dev": "NODE_ENV=development npm run server",
"prod": "NODE_ENV=production npm run server",
"clean": "rm build/*",
"eslint": "eslint --ext=js --ext=jsx src",
"test": "mocha --compilers js:babel-core/register --require test_helper.js --recursive --watch-extensions jsx 'src/**/*.spec.js*'",
"test:watch": "npm run test -- --watch",
"e2e": "cd e2e && nightwatch",
"e2e:ci": "npm run e2e -- --env ie9,safari,firefox,chrome",
"e2e:setup": "selenium-standalone install",
"e2e:start": "selenium-standalone start"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"autoprefixer": "^6.4.0",
"babel-core": "^6.13.2",
"babel-loader": "^6.2.5",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.14.0",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-1": "^6.13.0",
"babel-register": "^6.11.6",
"compression": "^1.6.2",
"css-loader": "^0.23.1",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"immutable": "^3.8.1",
"node-sass": "^3.8.0",
"postcss-loader": "^0.10.1",
"react": "^15.3.0",
"react-dom": "^15.3.0",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"sass-loader": "^4.0.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.2"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-eslint": "^6.1.2",
"babel-preset-react-hmre": "^1.1.1",
"chai": "^3.5.0",
"chai-immutable": "^1.6.0",
"eslint": "^3.3.1",
"eslint-config-airbnb": "^10.0.1",
"eslint-plugin-import": "^1.13.0",
"eslint-plugin-jsx-a11y": "^2.1.0",
"eslint-plugin-react": "^6.1.2",
"mocha": "^3.0.2",
"nightwatch": "^0.9.8",
"react-addons-test-utils": "^15.3.0",
"selenium-standalone": "^5.6.1",
"sinon": "^1.17.5",
"sinon-chai": "^2.8.0",
"skin-deep": "^0.16.0",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.12.2"
}
}