-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
95 lines (95 loc) · 3.26 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
{
"name": "h5-webpack-starter",
"version": "5.0.1",
"description": "H5 webpack starter for webpack, es6/7, sass, pug, swiper...",
"scripts": {
"start": "npm run dev",
"eslint": "eslint -c .eslintrc .",
"eslint:fix": "eslint --fix -c .eslintrc .",
"stylelint": "stylelint app/**/*.scss",
"stylelint:fix": "stylelint app/**/*.scss --fix",
"lint": "npm run eslint && npm run stylelint",
"lint:fix": "npm run eslint:fix && npm run stylelint:fix",
"dev": "npx webpack-cli --define-process-env-node-env development -c webpack/webpack.dev.config.js -w --color",
"build": "npx webpack-cli --define-process-env-node-env production -c webpack/webpack.build.config.js --progress --color",
"build:watch": "npx webpack-cli --define-process-env-node-env production -c webpack/webpack.build.config.js --progress --color -w",
"build:test_server:watch": "npx webpack-cli --define-process-env-node-env production_test_server -c webpack/webpack.build.config.js --progress --color -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cycjimmy/h5-webpack-starter.git"
},
"keywords": [
"h5",
"webpack",
"sass",
"pug"
],
"author": "cycjimmy <cycjimmy@gmail.com> (https://github.com/cycjimmy)",
"license": "MIT",
"bugs": {
"url": "https://github.com/cycjimmy/h5-webpack-starter/issues"
},
"homepage": "https://github.com/cycjimmy/h5-webpack-starter#readme",
"engines": {
"node": "18"
},
"dependencies": {
"@cycjimmy/awesome-js-funcs": "^4.0.9",
"@cycjimmy/h5-audio-controls": "^5.0.5",
"@cycjimmy/h5-pages": "^4.3.3",
"@cycjimmy/h5-preloader": "^5.0.4",
"@cycjimmy/mini-xhr": "^7.0.1",
"@cycjimmy/sass-lib": "^3.0.1",
"@cycjimmy/swiper-animation": "^6.0.3",
"@cycjimmy/weixin-share": "^7.0.3",
"core-js": "^3.38.1",
"fastclick": "^1.0.6",
"swiper": "^11.1.14"
},
"devDependencies": {
"@babel/core": "^7.25.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.25.7",
"@cycjimmy/config-lib": "^3.2.2",
"babel-loader": "^9.2.1",
"browser-sync": "^2.29.3",
"browser-sync-webpack-plugin": "^2.3.0",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"cssnano": "^7.0.6",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-webpack-plugin": "^4.2.0",
"expose-loader": "^5.0.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.0",
"image-webpack-loader": "^8.1.0",
"merge-stream": "^2.0.0",
"mini-css-extract-plugin": "^2.9.1",
"postcss": "^8.4.47",
"postcss-loader": "^8.1.1",
"postcss-preset-env": "^10.0.6",
"pug": "^2.0.4",
"pug-loader": "^2.4.0",
"sass": "^1.79.4",
"sass-loader": "^16.0.2",
"style-loader": "^4.0.0",
"stylelint": "^16.9.0",
"stylelint-config-sass-guidelines": "^12.1.0",
"stylelint-webpack-plugin": "^5.0.1",
"terser-webpack-plugin": "^5.3.10",
"url-loader": "^4.1.1",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^6.0.1",
"workbox-webpack-plugin": "^7.1.0",
"worker-loader": "^3.0.8"
},
"peerDependencies": {
"postcss": "^8.4.47",
"pug": "^2.0.4"
}
}