-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.31 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.31 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
66
67
68
69
70
71
72
73
74
{
"name": "my-mina",
"private": true,
"version": "1.0.0",
"description": "",
"keywords": [],
"author": "",
"license": "ISC",
"scripts": {
"dev": "npm run start",
"type-check": "tsc --noEmit",
"start": "webpack --watch --progress",
"build": "cross-env NODE_ENV=production BUILD_TYPE=release webpack && yarn build:npm",
"build:local": "cross-env LOCAL=1 NODE_ENV=production BUILD_TYPE=release webpack && yarn build:npm",
"build:npm": "weapp build-npm -p",
"preupload": "run-s build",
"test": "jest",
"format": "prettier --write src/**/*.wxml",
"open": "weapp open -p",
"postinstall": "weapp-tw patch"
},
"sideEffects": false,
"dependencies": {
"@vant/weapp": "^1.11.0",
"dayjs": "^1.11.9",
"tdesign-miniprogram": "^1.2.3"
},
"devDependencies": {
"@babel/core": "^7.22.20",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.22.15",
"@babel/preset-env": "^7.22.20",
"@babel/preset-typescript": "^7.22.15",
"@icebreakers/eslint-config-ts": "^1.2.2",
"@types/lodash": "^4.14.198",
"@types/node": "^20.6.2",
"autoprefixer": "^10.4.15",
"babel-loader": "^9.1.3",
"babel-plugin-lodash": "^3.3.4",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"ensure-posix-path": "^1.1.1",
"eslint": "^8.49.0",
"file-loader": "^6.2.0",
"jest": "^29.7.0",
"lodash": "^4.17.21",
"lodash-webpack-plugin": "^0.11.5",
"miniprogram-api-typings": "^3.12.0",
"npm-run-all": "^4.1.2",
"postcss": "^8.4.30",
"postcss-loader": "^7.3.3",
"postcss-pxtransform": "^3.6.16",
"postcss-rem-to-responsive-pixel": "^5.1.3",
"postcss-rpx-transform": "^1.0.1",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.4",
"replace-ext": "^2.0.0",
"required-path": "^1.0.1",
"run-script-os": "^1.1.6",
"sass": "^1.67.0",
"sass-loader": "^13.3.2",
"tailwind-css-variables-theme-generator": "^0.4.0",
"tailwindcss": "^3.3.3",
"tailwindcss-rem2px-preset": "^1.0.3",
"typescript": "^5.2.2",
"weapp-ide-cli": "^1.0.1",
"weapp-tailwindcss": "^2.9.2",
"weapp-tailwindcss-children": "^0.1.0",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-sources": "^3.2.3"
}
}