-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.88 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.88 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
{
"name": "angularjs-webpack-seed",
"version": "0.1.2",
"description": "An AngularJS + Webpack seed project, using ES2015+ with Babel, Webpack 3, ESLint, SASS (scss) and UI Router",
"author": "Gabriele Destefanis <g.destefanis@topsolution.it>",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/top-solution/angularjs-webpack-seed"
},
"dependencies": {
"@uirouter/angularjs": "^1.0.10",
"angular": "^1.6.6",
"box-sizing-border-box": "^1.0.1",
"normalize-scss": "^7.0.0"
},
"devDependencies": {
"autoprefixer": "^7.1.6",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"clean-webpack-plugin": "^0.1.17",
"css-loader": "^0.28.7",
"eslint": "^4.9.0",
"eslint-config-angular": "^0.5.0",
"eslint-config-xo-space": "^0.17.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-angular": "^3.1.1",
"eslint-plugin-babel": "^4.1.2",
"extract-text-webpack-plugin": "^3.0.2",
"favicons-webpack-plugin": "0.0.9",
"file-loader": "^1.1.5",
"html-loader": "^0.5.1",
"html-webpack-plugin": "^2.30.1",
"ng-annotate-loader": "^0.6.1",
"node-sass": "^4.5.3",
"postcss-loader": "^2.0.8",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"stylelint": "^8.2.0",
"stylelint-webpack-plugin": "^0.9.0",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.3"
},
"scripts": {
"dev": "NODE_ENV=dev webpack-dev-server --progress --config conf/webpack.conf.dev.js",
"build": "NODE_ENV=prod webpack -p --progress --config conf/webpack.conf.build.js"
},
"browserslist": [
"last 2 versions",
"ie >= 10"
],
"eslintConfig": {
"root": true,
"env": {
"browser": true
},
"parser": "babel-eslint",
"extends": [
"xo-space/esnext"
]
}
}