-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
132 lines (132 loc) · 5.43 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "react-seed",
"version": "1.0.0",
"description": "Reactive React Application Seed",
"author": "Vis Viva",
"license": "MIT",
"main": "webpack.config.js",
"keywords": [
"babel",
"chai",
"eslint",
"fetch-mock",
"flow",
"isomorphic-fetch",
"istanbul",
"protractor",
"karma",
"mocha",
"ramda",
"react",
"redux",
"redux-observable",
"redux-router",
"rxjs",
"sass",
"sinon",
"webpack-dashboard",
"webpack2",
"backstop"
],
"scripts": {
"test": "npm run test:spec:watch:phantomjs",
"test:ci": "npm run clean:all && npm run test:e2e:once && npm run test:spec:once && npm run test:vis:once",
"test:spec:once": "npm run clean:spec && cross-env NODE_ENV=production karma start './configuration/karma/karma.once.config.js'",
"test:spec:watch:phantomjs": "npm run clean:spec && cross-env NODE_ENV=production karma start './configuration/karma/karma.watch.phantomjs.config.js'",
"test:spec:watch:all": "npm run clean:spec && cross-env NODE_ENV=production karma start './configuration/karma/karma.watch.all.config.js'",
"test:e2e:once": "protractor ./configuration/protractor/protractor.config.js",
"test:e2e:driver": "webdriver-manager start",
"test:e2e:update": "webdriver-manager update",
"test:vis:reference": "backstop --backstopConfigFilePath './configuration/backstop/backstop.json' reference",
"test:vis:once": "backstop --backstopConfigFilePath './configuration/backstop/backstop.json' test",
"start": "cross-env NODE_ENV=development && ./node_modules/webpack-dashboard/bin/webpack-dashboard.js -t 'React-Redux Boilerplate' -- ./node_modules/webpack-dev-server/bin/webpack-dev-server.js --config './configuration/webpack/webpack.config.js'",
"build": "npm run build:prod",
"build:dev": "npm run clean:dist && npm run lint && cross-env NODE_ENV=development webpack --config './configuration/webpack/webpack.config.js'",
"build:prod": "npm run clean:dist && npm run lint && cross-env NODE_ENV=production webpack --config './configuration/webpack/webpack.config.js'",
"build:run": "http-server ./dist",
"lint": "eslint ./client ./configuration/webpack/webpack.config.js -f table || true",
"clean:dist": "rimraf reports/dist",
"clean:spec": "rimraf reports/spec && rimraf reports/coverage",
"clean:e2e": "rimraf reports/e2e",
"clean:vis": "rimraf reports/visual && rimraf reports/renders",
"clean:all": "npm run clean:e2e && npm run clean:spec && npm run clean:dist && npm run clean:vis"
},
"devDependencies": {
"autoprefixer": "^6.7.0",
"babel-core": "6.16.0",
"babel-eslint": "7.1.1",
"babel-loader": "^6.2.7",
"babel-plugin-transform-class-properties": "6.22.0",
"babel-plugin-transform-flow-comments": "^6.22.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-polyfill": "^6.22.0",
"babel-preset-es2015": "6.18.0",
"babel-preset-react": "6.22.0",
"babel-preset-react-hmre": "1.1.1",
"babel-preset-stage-0": "^6.22.0",
"babel-register": "^6.22.0",
"babel-runtime": "^6.22.0",
"backstopjs": "^2.3.7",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"cross-env": "3.1.4",
"css-loader": "0.14.5",
"eslint": "3.14.0",
"eslint-config-airbnb": "14.0.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "3.0.2",
"eslint-plugin-react": "6.9.0",
"extract-text-webpack-plugin": "^2.0.0-rc.2",
"fetch-mock": "^5.9.3",
"file-loader": "0.8.5",
"flow-babel-webpack-plugin": "^1.0.1",
"html-webpack-plugin": "^2.24.1",
"http-server": "^0.9.0",
"install": "^0.8.7",
"isomorphic-fetch": "^2.2.1",
"istanbul": "^0.4.5",
"istanbul-instrumenter-loader": "^1.2.0",
"jsx-chai": "^4.0.0",
"karma": "^1.4.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.0.0",
"karma-html-reporter": "^0.2.7",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.2",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sinon": "^1.0.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.2",
"mocha": "^3.2.0",
"mochawesome-screenshots": "^1.4.8",
"node-sass": "^4.4.0",
"npm": "^4.1.2",
"null-loader": "^0.1.1",
"phantomjs": "^2.1.7",
"phantomjs-prebuilt": "^2.1.14",
"postcss-loader": "^1.2.2",
"protractor": "^5.1.1",
"ramda": "^0.23.0",
"react": "15.4.2",
"react-dom": "15.4.2",
"react-redux": "5.0.2",
"react-router": "^3.0.2",
"react-router-redux": "^4.0.7",
"react-shallow-testutils": "^2.0.0",
"redux": "3.6.0",
"redux-mock-store": "^1.2.2",
"redux-observable": "^0.13.0",
"reselect": "^2.5.4",
"rimraf": "^2.5.4",
"rxjs": "^5.0.3",
"sass-loader": "^4.1.1",
"sinon": "^1.17.7",
"style-loader": "0.13.1",
"url-loader": "^0.5.7",
"webpack": "2.2.0",
"webpack-dashboard": "^0.3.0",
"webpack-dev-server": "2.2.0"
}
}