-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.37 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
{
"name": "acs-next-api",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "PORT=8080 next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"api": "json-server --watch _db/mock-api/endpoints.json --port 8000",
"api:generate": "node _db/mock-api/generate-endpoints.mjs > _db/mock-api/endpoints.json",
"prettier:check": "prettier --check \"**/*.{ts,tsx}\"",
"prettier": "prettier --write \"**/*.{ts,tsx}\"",
"seed": "ts-node db/seed/index.mjs",
"jest": "npx jest"
},
"dependencies": {
"@prisma/client": "^5.21.1",
"@types/next": "^9.0.0",
"autocannon": "^8.0.0",
"dayjs": "^1.11.13",
"dotenv": "^16.4.5",
"next": "^15.0.1",
"pg": "^8.13.0",
"postman2openapi": "^1.2.1",
"prettier": "^3.3.3",
"prisma": "^5.21.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"swagger-ui-react": "^5.18.2"
},
"devDependencies": {
"@types/dotenv": "^6.1.1",
"@types/jest": "^29.5.14",
"@types/node": "^20",
"@types/pg": "^8.11.10",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/swagger-ui-react": "^4.18.3",
"eslint": "^8",
"eslint-config-next": "15.0.0",
"jest": "^29.7.0",
"prisma-docs-generator": "^0.8.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}