-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.43 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
{
"name": "web-copilot",
"private": true,
"version": "1.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"dev:prod": "vite --mode production",
"build:beta": "tsc && vite build --mode development",
"build": "tsc && vite build --mode production",
"preview": "vite preview",
"cz": "git add . && git cz",
"czp": "yarn cz && git push -u origin HEAD",
"purge": "rm -rf dist",
"release": "./bin/release.sh"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@tanstack/react-query": "^4.29.3",
"antd-mobile": "^5.29.0",
"antd-mobile-icons": "^0.3.0",
"axios": "^1.3.4",
"link-preview-js": "^3.0.4",
"lodash": "^4.17.21",
"nanoid": "^4.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-grid-layout": "^1.3.4",
"react-router-dom": "^6.10.0",
"recoil": "^0.7.7",
"webextension-polyfill": "^0.10.0"
},
"devDependencies": {
"@crxjs/vite-plugin": "^2.0.0-beta.9",
"@types/lodash": "^4.14.194",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@types/react-grid-layout": "^1.3.2",
"@types/webextension-polyfill": "^0.9.2",
"@vitejs/plugin-react": "^3.0.0",
"autoprefixer": "^10.4.14",
"commitizen": "^4.3.0",
"git-cz": "^4.9.0",
"postcss": "^8.4.24",
"tailwindcss": "^3.3.2",
"typescript": "^4.9.3",
"vite": "^4.0.0"
},
"config": {
"commitizen": {
"path": "git-cz"
}
}
}