-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 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
{
"name": "quick-translate",
"homepage": "https://fhammerschmidt.github.io/quick-translate",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"dev": "run-p re:watch vite:serve",
"build": "run-s re:build vite:build vite:preview",
"buildCI": "run-s re:build vite:buildCI",
"vite:preview": "vite preview --port 8083",
"vite:serve": "vite --port 8083",
"vite:build": "vite build",
"vite:buildCI": "vite build --base=/quick-translate/",
"re:build": "rescript build -with-deps",
"re:watch": "rescript clean && rescript build -with-deps -w",
"re:clean": "rescript clean"
},
"dependencies": {
"@rescript/core": "^1.3.0",
"@rescript/react": "^0.12.2",
"jszip": "^3.10.1",
"papaparse": "^5.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.3.0",
"npm-run-all": "^4.1.5",
"rescript": "^11.1.1",
"vite": "^5.2.12",
"vite-plugin-pwa": "^0.20.0",
"vite-plugin-svgr": "^4.2.0"
}
}