-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·50 lines (50 loc) · 1.58 KB
/
package.json
File metadata and controls
executable file
·50 lines (50 loc) · 1.58 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
{
"name": "webpack2-karma-jasmine-angularjs",
"version": "1.0.0",
"description": "Testing environment and ES6 playground.",
"scripts": {
"start": "webpack-dev-server --config ./webpack/config.dev.js --inline --hot --no-info",
"build": "webpack --config ./webpack/config.prod.js --progress --colors --optimize-minimize",
"test": "karma start",
"test-multi": "karma start --single-run=false"
},
"dependencies": {
"angular": "^1.6.4",
"angular-route": "^1.6.4"
},
"devDependencies": {
"angular-mocks": "^1.6.4",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"css-loader": "^0.26.1",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"extract-text-webpack-plugin": "^2.0.0-beta.5",
"html-webpack-plugin": "^2.28.0",
"jasmine": "^2.6.0",
"jasmine-core": "^2.6.2",
"karma": "^1.7.0",
"karma-chrome-launcher": "^2.1.1",
"karma-firefox-launcher": "^1.0.1",
"karma-jasmine": "^1.1.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.31",
"karma-webpack": "^2.0.3",
"node-sass": "^4.5.0",
"raw-loader": "^0.5.1",
"resolve-url-loader": "^2.0.2",
"sass-loader": "^6.0.0",
"source-map-loader": "^0.1.6",
"style-loader": "^0.13.1",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.3.0"
},
"author": "Dan Carr",
"license": "MIT"
}