-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
67 lines (67 loc) · 1.77 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
{
"name": "viteapp-example-with-react",
"author": "@asurraa",
"version": "1.0.1",
"homepage": "./",
"license": "MIT",
"scripts": {
"dev": "vite --mode development",
"build:beta": "vite build --mode beta",
"build": "vite build --mode release",
"build:release": "vite build --mode release",
"serve": "vite preview",
"predeploy": "yarn build:release",
"deploy": "sh ./scripts/deploy.sh",
"commit": "cz",
"commit:signed": "cz -S",
"release": "npx release-it",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"dependencies": {
"antd": "^4.18.5",
"gh-pages": "^3.2.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"release-it": "^14.12.4",
"vite-react-jsx": "^1.1.2",
"vitest": "^0.2.7"
},
"devDependencies": {
"@release-it/bumper": "^3.0.1",
"@release-it/conventional-changelog": "^4.1.0",
"@types/babel__core": "^7.1.18",
"@types/node": "^17.0.15",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@vitejs/plugin-react-refresh": "^1.3.6",
"autoprefixer": "^10.4.2",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"husky": "^7.0.4",
"less": "^4.1.2",
"less-vars-to-js": "^1.3.0",
"lint-staged": "^12.3.3",
"postcss": "^8.4.6",
"tailwindcss": "^3.0.18",
"typescript": "^4.5.5",
"vite": "^2.7.13",
"vite-aliases": "^0.8.7",
"vite-plugin-babel-import": "^2.0.5",
"vite-plugin-imp": "^2.1.3",
"vite-plugin-inspect": "^0.3.13"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog",
"defaultScope": "global"
}
},
"lint-staged": {
"*.+(js|jsx|ts|tsx)": [
"prettier --write",
"git add"
]
},
"packageManager": "[email protected]"
}