-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
executable file
·90 lines (90 loc) · 2.55 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
{
"name": "webpack-angular-kit",
"version": "1.0.1",
"description": "",
"main": "dist/app.min.js",
"scripts": {
"eslint": "eslint",
"analyze": "webpack --json | webpack-bundle-size-analyzer",
"clean:full": "npm cache clean && rimraf -- node_modules doc typings coverage dist",
"clean": "rimraf dist/",
"build": "export NODE_ENV=dev && webpack",
"build:prod": "export NODE_ENV=prod && webpack -p",
"lint": "eslint src/ || true",
"start": "webpack-dev-server --port 3000 --config config/webpack.dev.js --inline --progress --profile --colors --watch --display-error-details --display-cached --content-base src/",
"test": "karma start",
"test:debug": "karma start karma.conf.js --log-level=debug --single-run=False",
"test:watch": "karma start karma.conf.js --auto-watch=true --single-run=False"
},
"keywords": [
"bundle",
"bundling",
"webpack",
"npm",
"angular"
],
"author": "Fabrizio Fortunato",
"license": "MIT",
"babel": {
"presets": [
"es2015"
],
"plugins": [
[
"transform-es2015-classes",
{
"loose": true
}
]
]
},
"devDependencies": {
"angular-mocks": "~1.6.4",
"autoprefixer": "^6.3.7",
"babel-core": "^6.3.26",
"babel-loader": "^6.1.0",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.1.18",
"connect-modrewrite": "^0.10.2",
"css-loader": "^0.28.0",
"eslint": "^4.18.2",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-config-angular": "^0.5.0",
"eslint-plugin-angular": "^2.2.1",
"eslint-plugin-import": "^2.2.0",
"extract-text-webpack-plugin": "1.0.1",
"file-loader": "^0.11.1",
"html-webpack-plugin": "^2.28.0",
"karma": "^1.6.0",
"karma-chrome-launcher": "^2.0.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.3",
"karma-sourcemap-loader": "^0.3.4",
"karma-webpack": "^2.0.3",
"mocha": "^3.2.0",
"ng-annotate-loader": "^0.2.0",
"node-sass": "^4.5.2",
"postcss-loader": "^1.3.3",
"raw-loader": "^0.5.1",
"rimraf": "^2.5.2",
"sass-loader": "4.1.1",
"script-loader": "^0.7.0",
"style-loader": "^0.16.1",
"url-loader": "^0.5.6",
"webpack": "1.14.0",
"webpack-dev-server": "1.16.0",
"webpack-md5-hash": "0.0.5",
"webpack-merge": "^4.1.0",
"webpack-vendor-chunk-plugin": "^1.0.0"
},
"dependencies": {
"angular": "1.6.4",
"angular-sanitize": "1.6.4",
"angular-ui-router": "0.3.2",
"bulma": "^0.4.0",
"moment": "^2.15.1"
},
"engines": {
"node": ">=6"
}
}