-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
97 lines (97 loc) · 2.81 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
{
"name": "ng-webpack-starter-shared-core",
"version": "1.0.0",
"description": "",
"scripts": {
"dev":
"cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js --progress --colors --hot",
"bundle":
"cross-env NODE_ENV=production webpack --config webpack.config.prod.js",
"start":
"cross-env NODE_ENV=development npm run bundle && http-server dist/ -p 8001"
},
"repository": {
"type": "git",
"url": "https://github.com/justinobney/ng-webpack-starter.git"
},
"keywords": ["angularjs", "webpack", "es6", "javascript"],
"author": "Justin Obney <[email protected]>",
"license": "MIT",
"babel": {
"presets": ["es2015", "stage-1"],
"plugins": ["transform-inline-environment-variables"]
},
"devDependencies": {
"angular-mocks": "1.5.11",
"babel-core": "6.3.17",
"babel-loader": "^6.2.10",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.19.0",
"babel-plugin-transform-decorators": "^6.13.0",
"babel-plugin-transform-inline-environment-variables": "^6.8.0",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-1": "^6.16.0",
"babel-preset-stage-2": "^6.5.0",
"babel-preset-stage-3": "^6.17.0",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^3.1.4",
"css-loader": "^0.26.1",
"extract-text-webpack-plugin": "^1.0.1",
"eslint": "^3.14.1",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.26.0",
"jasmine": "^2.5.2",
"json-loader": "0.5.4",
"karma": "^1.3.0",
"karma-babel-preprocessor": "^6.0.1",
"karma-chrome-launcher": "^2.0.0",
"karma-jasmine": "^1.1.0",
"karma-phantomjs2-launcher": "^0.5.0",
"karma-webpack": "^1.8.1",
"node-libs-browser": "^2.0.0",
"node-sass": "^4.1.1",
"null-loader": "^0.1.1",
"raw-loader": "0.5.1",
"sass-loader": "^4.1.1",
"style-loader": "^0.13.1",
"url-loader": "0.5.7",
"wallaby-webpack": "0.0.27",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2",
"webpack-split-by-path": "0.0.10"
},
"dependencies": {
"angular": "1.5.11",
"angular-resource": "1.5.11",
"angular-ui-bootstrap": "^2.4.0",
"angular-ui-router": "^1.0.0-beta.2",
"bootstrap": "^3.3.7",
"lodash": "^4.17.4"
},
"eslintConfig": {
"extends": "react-app",
"globals": {
"jasmine": true
},
"rules": {
"semi": [
"warn",
"always"
],
"indent": [
"error",
2
],
"comma-dangle": [
"error",
"always-multiline"
],
"object-curly-spacing": [
"error",
"never"
],
"no-use-before-define": 0
}
}
}