-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.25 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.25 KB
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
{
"name": "react-emplate",
"version": "1.0.0",
"type": "module",
"description": "React TypeScript on Replit, using Vite bundler",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"server": "node server.js",
"dev:all": "concurrently \"npm:server\" \"npm:dev\"",
"test": "tsc -p tsconfig.test.json && node -e \"require('fs').writeFileSync('tests/build/package.json','{\\\"type\\\":\\\"commonjs\\\"}')\" && node tests/build/tests/parsers.test.js"
},
"keywords": [],
"output": "dist",
"author": "",
"license": "ISC",
"devDependencies": {
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"concurrently": "^8.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.4.0",
"vite": "^5.4.10"
},
"dependencies": {
"@douyinfe/semi-foundation": "^2.38.0",
"@douyinfe/semi-ui": "^2.36.0",
"@lark-base-open/js-sdk": "^0.5.0",
"body-parser": "^1.20.3",
"express": "^4.19.2",
"i18next": "^23.5.1",
"i18next-browser-languagedetector": "^7.1.0",
"react-i18next": "^13.2.2",
"relaxed-json": "^1.0.3",
"reset-css": "^5.0.1"
},
"overrides": {
"update-browserslist-db": "1.0.13"
}
}