-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.02 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
{
"name": "mobile-project",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"author": {
"name": "<%= author %>",
"email": "<%= email %>"
},
"scripts": {
"start": "lark start -p 8088",
"start:https": "lark start -p 8088 --https",
"lint": "concurrently yarn:lint:*",
"lint:format": "prettier --write .",
"lint:code": "eslint src --fix",
"lint:style": "stylelint 'src/**/*.{css,less}'",
"preversion": "yarn lint",
"prepare": "husky install"
},
"devDependencies": {
"@babel/runtime": "^7.22.3",
"@commitlint/cli": "17.8.0",
"@commitlint/config-conventional": "17.8.0",
"@lark-org/lark-cli": "^1.8.13",
"@types/lodash": "4.17.1",
"@types/node": "^20.2.5",
"@types/react": "18.3.1",
"@types/react-dom": "18.3.0",
"@types/react-router": "5.1.20",
"@types/react-router-dom": "5.3.3",
"@types/react-transition-group": "4.4.10",
"babel-plugin-macros": "3.1.0",
"concurrently": "8.2.2",
"cross-env": "7.0.3",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.8",
"enzyme-to-json": "3.6.2",
"eslint": "8.57.0",
"eslint-config-lark": "0.4.0",
"husky": "8.0.3",
"jest": "29.7.0",
"lint-staged": "13.2.2",
"lolex": "6.0.0",
"penv.macro": "^0.4.0",
"prettier": "^2.8.8",
"stylelint": "15.11.0",
"stylelint-config-standard": "33.0.0",
"typescript": "5.4.5"
},
"dependencies": {
"axios": "^1.4.0",
"history": "^5.3.0",
"lottie-web": "^5.12.0",
"normalize.css": "8.0.1",
"query-string": "^8.1.0",
"react": "^18.2.0",
"react-document-title": "2.0.3",
"react-dom": "^18.2.0",
"react-router": "6.26.0",
"react-router-dom": "6.23.1"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": "eslint src --fix",
"**/*": "prettier -w -u"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}