-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
88 lines (88 loc) · 2.98 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
{
"name": "ijia-health",
"private": true,
"version": "1.0.0",
"description": "爱加健康微信小程序",
"keywords": [],
"author": "dominicleo <dominicleo@mail.com>",
"license": "MIT",
"scripts": {
"lint-js": "eslint --ext .ts --ext .tsx --ignore-path .gitignore --ignore-pattern \"!**/.*\" .",
"lint-css": "stylelint \"src/**/*.{css,less,styl,scss,sass,sss}\"",
"lint": "yarn run lint-js && yarn run lint-css",
"fix-js": "yarn run lint-js --fix",
"fix-css": "yarn run lint-css --fix",
"fix": "yarn run fix-js && yarn run fix-css",
"dev": "remax build -t wechat -w --no-devtools",
"build": "cross-env NODE_ENV=production remax build -t wechat -m",
"start": "cross-env REMAX_APP_ENV=development yarn dev",
"start:test": "cross-env REMAX_APP_ENV=test yarn dev",
"start:prod": "cross-env REMAX_APP_ENV=production yarn dev",
"release:dev": "cross-env REMAX_APP_ENV=development yarn build",
"release:test": "cross-env REMAX_APP_ENV=test yarn build",
"release": "cross-env REMAX_APP_ENV=production yarn build",
"update:deps": "yarn upgrade-interactive --latest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"@vant/weapp": "1.6.4",
"axios": "^0.21.0",
"classnames": "^2.2.6",
"currency.js": "^2.0.3",
"dayjs": "^1.9.6",
"events": "^3.2.0",
"lodash.chunk": "^4.2.0",
"lodash.debounce": "^4.0.8",
"lodash.isequal": "^4.5.0",
"lodash.isnumber": "^3.0.3",
"lodash.throttle": "^4.1.1",
"map-factory": "^3.8.3",
"qs": "^6.9.4",
"react": "^17.0.1",
"recoil": "^0.1.2",
"remax": "^2.11.3",
"umtrack-wx": "^2.5.2",
"unstated": "^2.1.1"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@remax/plugin-less": "^1.0.0",
"@types/classnames": "^2.2.11",
"@types/lodash.chunk": "^4.2.6",
"@types/lodash.debounce": "^4.0.6",
"@types/lodash.isequal": "^4.5.5",
"@types/lodash.isnumber": "^3.0.6",
"@types/lodash.throttle": "^4.1.6",
"@types/qs": "^6.9.5",
"@types/react": "^17.0.0",
"@types/umtrack-wx": "^2.3.0",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"commitlint": "^11.0.0",
"cross-env": "^7.0.3",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"glob": "^7.1.6",
"husky": "^4.3.0",
"lint-staged": "^10.5.2",
"postcss-import": "^12.0.1",
"postcss-url": "^8.0.0",
"prettier": "^2.2.1",
"stylelint": "^13.8.0",
"stylelint-config-css-modules": "^2.2.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^20.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.3.0",
"stylelint-order": "^4.1.0",
"typescript": "^4.1.2"
}
}