-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
63 lines (63 loc) · 1.95 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
{
"name": "angularjs-webpack-boilerplate",
"description": "boilerplate for angularjs 1.x component architecture build with webpack",
"version": "1.0.0",
"author": "Daniel Schranc",
"license": "MIT",
"keywords": [
"ES6",
"webpack",
"angularjs",
"component",
"class"
],
"repository": "git+https://github.com/DanielSchranc/angularjs-webpack-boilerplate.git",
"bugs": {
"url": "https://github.com/DanielSchranc/angularjs-webpack-boilerplate/issues"
},
"homepage": "https://github.com/DanielSchranc/angularjs-webpack-boilerplate#readme",
"scripts": {
"build": "cross-env NODE_ENV=production webpack -p",
"build:dev": "cross-env NODE_ENV=development webpack-dev-server",
"build:prod": "npm run clean && npm run build",
"clean": "rimraf build",
"start": "npm run build:dev"
},
"dependencies": {
"@babel/runtime": "^7.0.0",
"@babel/runtime-corejs2": "^7.0.0",
"@uirouter/angularjs": "^1.0.20",
"angular": "^1.7.3",
"angular-loading-bar": "^0.9.0",
"webpack-cli": "^3.1.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"autoprefixer": "^9.1.5",
"babel-loader": "^8.0.2",
"babel-plugin-angularjs-annotate": "^0.9.0",
"babel-plugin-lodash": "^3.3.4",
"copy-webpack-plugin": "^4.5.2",
"cross-env": "^5.2.0",
"css-loader": "^1.0.0",
"eslint": "^4.17.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.7.0",
"extract-text-webpack-plugin": "^3.0.2",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"node-libs-browser": "2.1.0",
"node-sass": "^4.9.3",
"null-loader": "^0.1.1",
"postcss-loader": "3.0.0",
"raw-loader": "^0.5.1",
"rimraf": "^2.6.2",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.0",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.17.2",
"webpack-dev-server": "^3.1.8"
}
}