-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
56 lines (56 loc) · 1.51 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
{
"name": "mobileweb",
"version": "1.0.0",
"description": "a mobile web page demo with rem unit, created with webpack5 and postcss8",
"main": "postcss.config.js",
"scripts": {
"dev": "cross-env NODE_ENV=dev webpack server --open --config webpack.config.js",
"build": "webpack --progress --mode production --config webpack.config.js",
"start": "npm run dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/whidy/mobileweb.git"
},
"keywords": [
"postcss",
"browsers"
],
"author": "whidy",
"license": "ISC",
"bugs": {
"url": "https://github.com/whidy/mobileweb/issues"
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"homepage": "https://github.com/whidy/mobileweb#readme",
"devDependencies": {
"autoprefixer": "^10.4.7",
"clean-webpack-plugin": "4.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"cssnano": "^5.1.8",
"expose-loader": "^3.1.0",
"html-webpack-plugin": "^5.5.0",
"jquery": "^3.6.0",
"mini-css-extract-plugin": "^2.6.0",
"normalize.css": "^8.0.1",
"postcss": "^8.4.13",
"postcss-advanced-variables": "^3.0.1",
"postcss-loader": "^6.2.1",
"postcss-import": "^14.1.0",
"postcss-nested": "^5.0.6",
"postcss-pxtorem": "^6.0.0",
"postcss-scss": "^4.0.4",
"postcss-sorting": "^7.0.1",
"style-loader": "^3.3.1",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.0"
},
"dependencies": {
"amfe-flexible": "^2.2.1"
}
}