-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.1 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
{
"name": "react-web",
"private": true,
"version": "0.0.3",
"engine": {
"node": "16"
},
"scripts": {
"tsc": "tsc --noemit",
"start": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"lint": "eslint ./src --ext .ts,.tsx",
"release": "standard-version",
"prepare": "husky install"
},
"dependencies": {
"@meta-react/i18n": "^1.0.4",
"axios": "^0.26.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.2.2",
"use-local-storage": "^2.3.6"
},
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@meta-configs/eslint-config": "^1.0.8",
"@meta-configs/tsc": "^1.0.2",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@vitejs/plugin-react": "^1.0.7",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"husky": "^7.0.4",
"standard-version": "^9.3.2",
"typescript": "^4.5.4",
"vite": "^2.8.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}