-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
70 lines (70 loc) · 2.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
{
"name": "angular-webpack-seed",
"version": "0.1.0",
"description": "angualr project template",
"main": "index.js",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"build": "webpack --config webpack-production.config.js --progress --colors",
"build-dev": "webpack --config webpack.config.js --progress --colors",
"dev": "webpack-serve --config webpack-dev-server.config.js --port 2992",
"test": "karma start",
"cover": "rimraf coverage && COVERAGE=1 karma start",
"lint": "eslint ./src/"
},
"author": "Bogdan Savluk <savluk.bogdan@gmail.com>",
"license": "MIT",
"private": true,
"dependencies": {
"angular": "^1.7.5"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.1",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@babel/preset-typescript": "^7.1.0",
"@babel/runtime": "^7.2.0",
"angular-mocks": "^1.7.5",
"autoprefixer": "^9.4.3",
"babel-loader": "^8.0.4",
"babel-plugin-angularjs-annotate": "^0.9.0",
"codecov.io": "^0.1.6",
"coveralls": "^3.0.2",
"css-loader": "^2.0.1",
"eslint": "^5.10.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-plugin-import": "^2.14.0",
"file-loader": "^2.0.0",
"html-loader": "^0.5.1",
"istanbul-instrumenter-loader": "^3.0.1",
"jasmine-core": "^3.3.0",
"karma": "^3.1.4",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^2.0.0",
"karma-coverage-istanbul-reporter": "^2.0.4",
"karma-firefox-launcher": "^1.0.1",
"karma-jasmine": "^2.0.1",
"karma-sourcemap-loader": "^0.3.5",
"karma-webpack": "^3.0.5",
"less": "^3.9.0",
"less-loader": "^4.0.5",
"loader-utils": "^1.1.0",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.11.0",
"null-loader": "^0.1.1",
"postcss-loader": "^3.0.0",
"rimraf": "^2.6.1",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"webpack": "^4.28.0",
"webpack-cli": "^3.1.2",
"webpack-serve": "^2.0.3"
}
}