-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.18 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
{
"name": "ammo",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"build:stage": "prisma generate && next build",
"build:prod": "prisma generate && next build",
"start": "next start",
"test": "echo 'Ammo tests not yet implemented'",
"test:ci": "echo 'Ammo tests not yet implemented'",
"lint": "next lint"
},
"dependencies": {
"@nextui-org/react": "2.4.8",
"@prisma/client": "5.21.1",
"framer-motion": "11.11.9",
"next": "14.2.23",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "7.53.0",
"react-icons": "5.3.0",
"react-stately": "3.33.0",
"sharp": "0.33.5"
},
"devDependencies": {
"@eslint/js": "9.11.1",
"@stylistic/eslint-plugin": "2.9.0",
"@types/node": "20.16.11",
"@types/react": "18.3.11",
"@types/react-dom": "18.3.1",
"@typescript-eslint/eslint-plugin": "8.9.0",
"@typescript-eslint/parser": "8.9.0",
"eslint": "8.57.1",
"eslint-config-next": "14.2.15",
"postcss": "8.4.47",
"prisma": "5.21.1",
"tailwindcss": "3.4.13",
"typescript": "5.6.3",
"typescript-eslint": "7.18.0"
}
}