-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.15 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
{
"name": "ebcc",
"version": "1.0.0",
"description": "",
"main": "index.js",
"homepage": "https://antiv.github.io/ebcc/",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "vite",
"dev:ebcc": "vite --mode ebcc",
"dev:biodata": "vite --mode biodata",
"build": "vite build",
"build:ebcc": "vite build --mode ebcc",
"build:biodata": "vite build --mode biodata",
"build:all": "npm run build:ebcc && npm run build:biodata",
"predeploy": "npm run build:all",
"deploy": "gh-pages -d dist",
"predeploy:ebcc": "npm run build:ebcc",
"deploy:ebcc": "gh-pages -d dist",
"predeploy:biodata": "npm run build:biodata",
"deploy:biodata": "gh-pages -d dist -e biodata"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"i18next": "^25.6.3",
"jschardet": "^3.1.4",
"papaparse": "^5.5.3",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-i18next": "^16.3.5",
"sql.js": "^1.13.0"
},
"devDependencies": {
"@vitejs/plugin-react": "^5.1.1",
"baseline-browser-mapping": "^2.10.23",
"gh-pages": "^6.3.0",
"vite": "^7.2.4"
}
}