-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.84 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
{
"name": "yichun-guide-app",
"version": "1.0.0",
"private": true,
"type": "module",
"packageManager": "yarn@1.22.22",
"engines": {
"node": ">=18.19.1 <19 || >=20.6.1"
},
"scripts": {
"format": "prettier --write \"**/*.{js,cjs,ts,json,css,html,md}\"",
"lint:script": "eslint .",
"lint:style": "stylelint \"src/**/*.css\"",
"type-check": "tsc",
"dev": "cross-env NODE_ENV=development node build.js",
"build": "cross-env NODE_ENV=production node build.js"
},
"dependencies": {
"@babel/runtime": "^7.25.0",
"@cloudbase/wx-cloud-client-sdk": "^1.2.1",
"@vue-mini/core": "^1.0.2",
"promise-polyfill": "^8.3.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/plugin-transform-runtime": "^7.24.7",
"@babel/preset-env": "^7.25.3",
"@babel/preset-typescript": "^7.24.7",
"@babel/traverse": "^7.25.3",
"@babel/types": "^7.25.2",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.7",
"@rollup/plugin-terser": "^0.4.4",
"@types/node": "^22.5.0",
"babel-plugin-autocomplete-index": "^0.2.0",
"babel-plugin-module-resolver": "^5.0.2",
"babel-plugin-transform-inline-environment-variables": "^0.4.4",
"chokidar": "^3.6.0",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"fs-extra": "^11.2.0",
"globals": "^15.9.0",
"kolorist": "^1.8.0",
"postcss": "^8.4.40",
"postcss-load-config": "^6.0.1",
"postcss-pxtorpx-pro": "^2.0.0",
"prettier": "^3.3.3",
"rollup": "^4.19.2",
"stylelint": "^16.8.1",
"stylelint-config-standard": "^36.0.1",
"terser": "^5.31.3",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.0"
},
"browserslist": [
"iOS >= 10",
"Chrome >= 63"
]
}