-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.17 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
{
"name": "cs-roaster",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "vitest",
"lint": "next lint --fix",
"prepare": "husky"
},
"dependencies": {
"@google/generative-ai": "^0.17.2",
"@picocss/pico": "^2.0.6",
"@types/lodash.debounce": "^4.0.9",
"lodash.debounce": "^4.0.8",
"next": "15.0.4",
"react": "19.0.0",
"react-dom": "19.0.0"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.1.0",
"@types/node": "^20.17.9",
"@types/react": "19.0.1",
"@types/react-dom": "19.0.1",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^8.57.1",
"eslint-config-next": "15.0.4",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^9.1.5",
"jsdom": "^25.0.0",
"lint-staged": "^15.2.9",
"prettier": "^3.3.3",
"sass": "^1.77.8",
"typescript": "^5",
"vitest": "^2.0.5"
},
"lint-staged": {
"**/*.{ts,tsx}": "eslint --fix",
"**/*": "prettier --write --ignore-unknown"
},
"overrides": {
"@types/react": "19.0.1",
"@types/react-dom": "19.0.1"
}
}