-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.21 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
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "react-lego",
"version": "0.0.0",
"description": "",
"main": "src/server-entry.js",
"scripts": {
"prestart": "rm -rf compiled && npm run build && cp src/server/views/index.html compiled",
"build": "NODE_ENV=production webpack --config src/config/webpack.config.prod.js -p",
"start": "NODE_ENV=production http-server compiled",
"start:dev": "node src/dev-server-entry.js ",
"lint": "sass-lint -v -q -c ./sass-lint.yml && eslint 'src/**/*.js'",
"test": "npm run test:unit && npm run test:func",
"test:unit": "npm run mocha -- 'src/**/*.spec.js'",
"test:func": "npm run mocha -- 'tests/functional/**/*.func.js'",
"test:e2e": "npm run nightwatch -- --env local",
"test:e2e-smoke": "npm run nightwatch -- --env chrome_win --tag smoke",
"test:e2e-xb": "npm run nightwatch -- --env safari_osx,chrome_osx,firefox_win,firefox_osx,IE11,edge",
"prenightwatch": "selenium-standalone install --version=3.0.1 && npm run prestart",
"nightwatch": "NODE_ENV=production nightwatch -o ./tests/e2e/tests_output -c ./tests/config/nightwatch.conf.js",
"mocha": "mocha --opts ./tests/config/mocha.opts "
},
"engines": {
"node": "^6.6.0",
"npm": "^3.10.3"
},
"pre-commit": [
"lint",
"test"
],
"pre-push": [
"test:e2e"
],
"author": "Peter Mouland",
"license": "ISC",
"dependencies": {
"autoprefixer": "^6.3.1",
"babel-core": "^6.8.0",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.2.0",
"babel-plugin-transform-class-properties": "^6.8.0",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-plugin-transform-require-ignore": "0.0.2",
"babel-polyfill": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"body-parser": "^1.15.2",
"classnames": "^2.2.3",
"cross-env": "^3.0.0",
"css-loader": "^0.25.0",
"cssnano": "^3.5.2",
"debug": "^2.2.0",
"extract-text-webpack-plugin": "^1.0.1",
"http-server": "^0.9.0",
"isomorphic-fetch": "^2.2.1",
"node-sass": "^3.4.2",
"postcss-loader": "^0.13.0",
"react": "^15.1.0",
"react-document-meta": "^2.0.2",
"react-dom": "^15.1.0",
"react-router": "^2.4.0",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.0",
"webpack": "^1.13.1",
"yargs": "^6.0.0"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-eslint": "^7.0.0",
"browserstack-local": "^1.1.0",
"chai": "^3.5.0",
"chai-enzyme": "^0.5.2",
"chromedriver": "2.24.1",
"enzyme": "^2.3.0",
"eslint": "^3.5.0",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-babel": "^3.0.0",
"eslint-plugin-import": "^2.0.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.2.2",
"express": "^4.14.0",
"http-proxy": "^1.15.1",
"jsdom": "^9.2.1",
"mocha": "^3.1.0",
"nightwatch": "^0.9.0",
"nightwatch-html-reporter": "^1.0.3",
"nodemon": "^1.10.2",
"pre-commit": "^1.1.2",
"pre-push": "^0.1.1",
"react-addons-test-utils": "^15.1.0",
"sass-lint": "^1.5.1",
"selenium-standalone": "^6.0.1",
"sinon": "^1.17.3",
"supertest": "^2.0.0",
"webpack-dev-server": "^1.16.1"
}
}