-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.21 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
{
"name": "nlp-web",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"start": "vite --host",
"build": "tsc && vite build",
"preview": "vite preview",
"prettier": "prettier --write .",
"prepare": "husky install"
},
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@types/classnames": "^2.3.1",
"@types/js-cookie": "^3.0.3",
"@types/node": "^18.15.11",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-legacy": "^4.0.2",
"@vitejs/plugin-react": "^3.1.0",
"husky": "^8.0.3",
"less": "^4.1.3",
"lint-staged": "^13.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"terser": "^5.16.9",
"typescript": "^4.9.3",
"vite": "^4.2.1",
"vite-babel-plugin": "^0.0.2"
},
"dependencies": {
"axios": "^1.3.5",
"classnames": "^2.3.2",
"js-cookie": "^3.0.1",
"react-router": "^6.11.2",
"react-router-dom": "^6.11.2"
},
"lint-staged": {
"**/*.{ts, tsx, less, module.less, json, md, .html}": "prettier --write ."
}
}