-
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) · 2 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2 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": "webpack4-angularjs1.4",
"version": "1.0.0",
"description": "",
"main": "webpack.config.js",
"scripts": {
"prod": "webpack --mode production --config ./webpack.config.prod.js",
"uat": "cross-env NODE_ENV=uat npm run prod",
"watch": "webpack --mode development --config ./webpack.config.watch.js",
"dev": "webpack-dev-server --open --mode development --config ./webpack.config.dev.js",
"components": "node ./tools/cli.run.js components",
"directives": "node ./tools/cli.run.js directives",
"filter": "node ./tools/cli.run.js filter",
"module": "node ./tools/cli.run.js module",
"services": "node ./tools/cli.run.js services",
"cli": "node ./tools/cli.run.js"
},
"author": "lottid",
"browserslist": [
"> 1%",
"last 2 versions",
"ie >= 8"
],
"license": "ISC",
"dependencies": {
"angular": "1.4.7",
"angular-ui-router": "^0.4.2",
"oclazyload": "^1.1.0"
},
"devDependencies": {
"autoprefixer": "^8.2.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"cross-env": "^5.1.6",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-loader": "^2.0.0",
"file-loader": "^1.1.11",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"less": "^3.0.1",
"less-loader": "^4.1.0",
"mini-css-extract-plugin": "^0.4.0",
"optimize-css-assets-webpack-plugin": "^4.0.0",
"postcss-loader": "^2.1.3",
"style-loader": "^0.20.3",
"uglifyjs-webpack-plugin": "^1.2.5",
"url-loader": "^1.0.1",
"webpack": "^4.5.0",
"webpack-cli": "^2.0.14",
"webpack-dev-server": "^3.1.2"
},
"engines": {
"node": ">= 7.0.0",
"npm": ">= 3.0.0"
}
}