-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.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
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
98
{
"name": "single-page",
"branchversion": "2.0",
"description": "webpack single page of angularjs.",
"main": "",
"scripts": {
"dev": "nodemon",
"build": "webpack --config build/webpack.config.js --env production",
"img": "node build/optizing-img.js",
"gh-pages": "git checkout -b gh-pages && npm run lint && npm run build && git add -A && git commit -m 'publish-gh-pages' && git push origin gh-pages:gh-pages --force && git checkout master && git branch -D gh-pages",
"lint": "eslint src --fix --ext .js",
"stats": "webpack-bundle-analyzer stats.json",
"stats:dev": "webpack --config build/webpack.config.js --env development --json > stats.json",
"stats:build": "webpack --config build/webpack.config.js --env production --json > stats.json"
},
"keywords": [
"webpack",
"single-page",
"cache nav"
],
"author": "lzb",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/runtime-corejs2": "^7.3.4",
"autoprefixer": "^9.4.5",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^2.0.1",
"cssnano": "^4.1.10",
"eslint": "^5.15.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-import-resolver-webpack": "^0.11.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"file-loader": "^3.0.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^4.0.0-beta.5",
"http-server": "^0.11.1",
"image-webpack-loader": "^4.6.0",
"imagemin": "^6.1.0",
"imagemin-gifsicle": "^6.0.1",
"imagemin-mozjpeg": "^8.0.0",
"imagemin-optipng": "^6.0.0",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.11.0",
"nodemon": "^1.18.9",
"postcss-loader": "^3.0.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"webpack": "^4.27.1",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.14",
"webpack-merge": "^4.1.5",
"webpack-spritesmith": "^0.5.4",
"workbox-build": "^3.6.3",
"workbox-webpack-plugin": "^3.6.3"
},
"dependencies": {
"@uirouter/angularjs": "^1.0.22",
"@uirouter/visualizer": "^7.0.0",
"angular": "^1.7.7",
"oclazyload": "^1.1.0"
},
"eslintConfig": {
"root": true,
"globals": {
"window": true,
"document": true
},
"parser": "babel-eslint",
"extends": "airbnb",
"settings": {
"import/resolver": {
"webpack": {
"config": "./build/webpack.config.js"
}
}
},
"rules": {
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": true
}
]
}
}
}