-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.45 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.45 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@stl-api/demo",
"version": "0.0.0-development",
"private": true,
"scripts": {
"clean": "rimraf .next *.tsbuildinfo",
"mongo": "yarn prisma generate",
"dev": "next dev",
"build": "prisma generate && pnpm build:api-route-map && next build && tsc -b",
"build:api-route-map": "node ../packages/stainless/dist/cli/gen-stl-api-route-map.js api/api.ts",
"watch:api-route-map": "nodemon -e js,json,ts --ignore *-route-map.ts --exec pnpm build:api-route-map",
"start": "next start",
"lint": "next lint",
"psql": "docker compose exec db psql -U postgres",
"prisma": "prisma",
"stl": "ts-node --transpileOnly --swc ../packages/cli/src/index.ts",
"test": "jest"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^4.16.2",
"@stl-api/cli": "workspace:*",
"@stl-api/next": "workspace:*",
"@stl-api/next-auth": "workspace:*",
"@stl-api/prisma": "workspace:*",
"@stl-api/react-query": "workspace:*",
"@tanstack/query-core": "^4.36.1",
"@tanstack/react-query": "^4.36.1",
"axios": "^1.7.4",
"bcrypt": "^5.1.1",
"date-fns": "^2.30.0",
"next": "^14.2.8",
"next-auth": "^4.24.7",
"prisma": "^4.16.2",
"qs": "^6.11.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-hot-toast": "^2.4.1",
"react-icons": "^4.12.0",
"react-spinners": "^0.13.8",
"react-toastify": "^9.1.3",
"react-use-measure": "^2.1.1",
"react-virtualized-auto-sizer": "^1.0.20",
"react-window": "^1.8.10",
"stainless": "workspace:*",
"zod": "^4.3.6",
"zustand": "^4.4.7"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@types/bcrypt": "^5.0.2",
"@types/jest": "^29.5.10",
"@types/lodash": "^4.14.202",
"@types/node": "18.14.2",
"@types/node-fetch": "^2.6.9",
"@types/qs": "^6.9.10",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"@types/react-virtualized-auto-sizer": "^1.0.3",
"@types/react-window": "^1.8.8",
"autoprefixer": "^10.4.16",
"jest": "^29.7.0",
"jest-watch-typeahead": "^2.2.2",
"lodash": "^4.17.21",
"node-fetch": "^2.7.0",
"nodemon": "^3.1.4",
"postcss": "^8.4.32",
"swr": "^2.2.4",
"tailwindcss": "^3.3.6",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
}
}