-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.47 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
{
"name": "momoji2",
"private": true,
"version": "0.0.0",
"type": "module",
"homepage": "https://swawa-yu.github.io/momiji2",
"scripts": {
"dev": "vite",
"build": "tsc && vite build && cp -r dist docs",
"rebuild": "tsc && vite build && rm -R docs && cp -r dist docs",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"rm": "rm -rf docs",
"mv": "mv build docs",
"git": "git add . && git commit && git push origin master",
"deploy": "npm run rm && npm run build && npm run mv && npm run git"
},
"dependencies": {
"@types/papaparse": "^5.3.14",
"@types/react-table": "^7.7.18",
"@types/react-window": "^1.8.8",
"axios": "^1.6.3",
"csv-react-table": "^2.0.7",
"lucide-react": "^0.445.0",
"material-table": "^2.0.5",
"papaparse": "^5.4.1",
"react": "^18.2.0",
"react-bootstrap": "^2.9.2",
"react-data-table-component": "^7.5.4",
"react-dom": "^18.2.0",
"react-router-dom": "^6.21.1",
"react-table": "^7.8.0"
},
"devDependencies": {
"@types/node": "^18.19.3",
"@types/react": "^18.2.46",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.56.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.5",
"typescript": "^5.3.3",
"vite": "^4.5.1"
}
}