-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.01 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.01 KB
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
{
"name": "opinion",
"version": "0.0.1",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/crowdlab-uk/disc-api3"
},
"scripts": {
"start": "node server.js",
"build": "webpack --config deploy.webpack.config.js",
"lint": "npm run lint:javascript; npm run lint:sass",
"lint:javascript": "eslint webpack",
"lint:javascript:fix": "eslint webpack --fix",
"lint:sass": "scss-lint webpack",
"test": "karma start",
"test:multi": "karma start --single-run=false",
"test:e2e": "nightwatch",
"test:e2e:firefox": "nightwatch -e firefox",
"test:e2e:all": "nightwatch -e default,firefox,safari"
},
"dependencies": {
"extract-text-webpack-plugin": "^1.0.1",
"ima.js-babel6-polyfill": "^0.1.1",
"stats-webpack-plugin": "^0.2.1",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
},
"devDependencies": {
"babel-core": "^6.4.5",
"babel-eslint": "^6.0.2",
"babel-loader": "^6.2.1",
"babel-polyfill": "^6.5.0",
"babel-preset-airbnb": "^1.1.1",
"babel-preset-stage-1": "^6.5.0",
"chai": "^3.5.0",
"chai-enzyme": "^0.4.1",
"chai-spies": "^0.7.1",
"core-js": "^2.1.1",
"css-loader": "^0.23.1",
"deep-freeze": "0.0.1",
"enzyme": "^2.2.0",
"eslint": "^2.4.0",
"eslint-config-airbnb": "^6.1.0",
"eslint-plugin-objects": "^1.1.1",
"eslint-plugin-react": "^4.0.0",
"isparta-loader": "^2.0.0",
"jsdom": "^8.0.4",
"json-loader": "^0.5.4",
"karma": "^0.13.21",
"karma-cli": "^0.1.2",
"karma-coverage": "^0.5.5",
"karma-intl-shim": "^1.0.3",
"karma-mocha": "^0.2.2",
"karma-mocha-reporter": "^2.0.0",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"mocha": "^2.4.5",
"nightwatch": "^0.8.16",
"node-sass": "^3.4.2",
"phantomjs-prebuilt": "^2.1.5",
"postcss-loader": "^0.8.2",
"sass-loader": "^3.1.2",
"style-loader": "^0.13.0",
"webdriver-manager": "^8.0.0"
}
}