-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 2.54 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "the-tol-project",
"version": "1.3.0",
"private": true,
"homepage": "https://tol.polinetwork.org/",
"scripts": {
"build": "tsc && vite build",
"build:db": "npx rimraf temp && npx mkdirp temp/img && ts-node scripts/database.ts",
"build:dev": "npm run build && rm dist/CNAME",
"deploy:prod": "npm run build && gh-pages -d dist",
"depcheck": "depcheck",
"exports": "ts-prune -e",
"format": "prettier --write \"{src,scripts}/**/*.{ts,tsx}\"",
"lint": "eslint ./src ./scripts --ext .ts,.tsx && prettier --check \"{src,scripts}/**/*.{ts,tsx}\" && npm run exports",
"lint:fix": "eslint ./src ./scripts --fix --ext .ts,.tsx && npm run format && npm run exports",
"start": "vite --open",
"test": "npm run build && npm run lint",
"preview": "vite preview",
"prepare": "husky"
},
"dependencies": {
"@types/google-spreadsheet": "^3.3.1",
"@types/node": "^16.10.3",
"@types/react": "^17.0.27",
"@types/react-dom": "^17.0.9",
"@types/react-latex": "^2.0.0",
"@types/underscore": "^1.11.4",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react-swc": "^3.3.0",
"axios": "^1.6.0",
"depcheck": "^1.4.3",
"dotenv": "^16.0.3",
"eslint": "^8.39.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"eslint-plugin-unused-imports": "^3.0.0",
"fraction.js": "^4.1.2",
"fromentries": "^1.3.2",
"gh-pages": "^5.0.0",
"google-spreadsheet": "^3.3.0",
"googleapis": "^39.2.0",
"husky": "^9.0.11",
"i18next": "^22.4.15",
"i18next-browser-languagedetector": "^7.0.1",
"mkdirp": "^3.0.1",
"prettier": "^3.2.5",
"react": "^17.0.2",
"react-collapsible": "^2.10.0",
"react-dom": "^17.0.2",
"react-i18next": "^12.2.2",
"react-icons": "^4.8.0",
"react-latex": "^2.0.0",
"react-ribbons": "github:EndBug/react-ribbons#custom",
"react-router-dom": "^6.10.0",
"react-timer-hook": "^3.0.5",
"react-to-print": "^2.14.12",
"rimraf": "^5.0.0",
"ts-node": "^10.9.1",
"ts-prune": "^0.10.3",
"typescript": "^5.0.4",
"underscore": "^1.13.6",
"vite": "^4.5.3"
},
"engines": {
"node": "^20.0.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}