-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.19 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
{
"name": "jubeat",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"ts": "ts-node",
"ts-debug": "NODE_OPTIONS='--inspect-brk' ts-node",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint --fix \"src/**/*.{ts,tsx}\"",
"scraper": "npx ts-node scraper"
},
"dependencies": {
"@reduxjs/toolkit": "^1.9.3",
"@types/inquirer": "^7.3.3",
"clsx": "^1.2.1",
"fuse.js": "^6.6.2",
"lodash": "^4.17.21",
"pixi.js": "^7.1.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-query": "^3.39.3"
},
"devDependencies": {
"@types/async": "^3.2.18",
"@types/lodash": "^4.14.194",
"@types/node": "^18.15.11",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@vitejs/plugin-react": "^3.1.0",
"axios": "^1.3.4",
"axios-retry": "^3.4.0",
"cheerio": "^1.0.0-rc.12",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-prettier": "^4.2.1",
"inquirer": "^7.3.3",
"prettier-plugin-organize-imports": "^3.2.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"vite": "^4.1.0"
}
}