-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.46 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
{
"name": "toxin",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"postinstall": "prisma generate",
"build": "npm run postinstall && next build",
"start": "next start",
"lint": "next lint",
"migrate": "prisma migrate dev"
},
"prisma": {
"schema": "app/configs/prisma/schema.prisma"
},
"dependencies": {
"@prisma/client": "4.16.0",
"@types/node": "20.4.2",
"@types/react": "18.2.15",
"@types/react-dom": "18.2.7",
"animate.css": "^4.1.1",
"effector": "^22.8.6",
"effector-next": "^1.3.3",
"effector-react": "^22.5.3",
"eslint": "^8.45.0",
"eslint-config-next": "13.4.9",
"next": "13.4.9",
"next-auth": "^4.22.1",
"pg": "^8.11.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-range-slider-input": "^3.0.7",
"react-transition-group": "^4.4.5",
"sass": "^1.63.6",
"swiper": "9.4.1",
"typescript": "5.1.6"
},
"devDependencies": {
"@types/react-transition-group": "^4.4.6",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-boundaries": "^3.4.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unicorn": "^48.0.0",
"prettier": "^3.0.0",
"prisma": "4.16.0"
}
}