-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.49 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
{
"name": "badminton-schleifchen-turnier",
"version": "0.1.0",
"private": true,
"scripts": {
"next:dev": "next dev",
"build": "next build",
"start": "concurrently --prefix-colors \"blue,green\" --names \"next,json-server\" \"npm run start:app\" \"npm run start:api\"",
"start:app": "next start",
"start:api": "json-server --config json-server/config.json json-server/db.json",
"test:lint": "next lint",
"test:unit": "",
"test:watch": "",
"test": "npm run test:lint && npm run test:unit",
"dev": "concurrently --prefix-colors \"blue,green\" --names \"next,json-server\" \"npm run next:dev\" \"npm run start:json-server\"",
"resetDatabase": "node src/scripts/reset-database.js",
"postinstall": "npm run resetDatabase",
"test:typecheck": "tsc --noEmit"
},
"dependencies": {
"bootstrap": "5.3.3",
"concurrently": "^8.2.2",
"json-server": "^0.17.4",
"next": "14.2.3",
"pino": "9.3.2",
"react": "18.3.1",
"react-bootstrap": "2.10.2",
"react-dom": "18.3.1",
"zod": "3.23.8"
},
"devDependencies": {
"@types/node": "20.12.12",
"@types/react": "18.3.2",
"@types/react-dom": "18.3.0",
"eslint": "8.57.0",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3",
"prettier": "3.2.5",
"typescript": "5.4.5"
}
}