forked from retcons/limbus-logs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.19 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": "limbus-logs",
"version": "1.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"studio": "prisma studio",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint",
"stylefix": "stylelint --fix \"src/**/*.{scss, module.scss}\""
},
"prisma": {
"schema": "src/prisma/schema.prisma",
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} src/prisma/seed/seed.ts"
},
"dependencies": {
"@prisma/client": "^5.9.1",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toggle-group": "^1.0.4",
"next": "^14.1.0",
"prisma": "^5.9.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.3.3"
},
"devDependencies": {
"@types/node": "^20.11.16",
"@types/react": "^18.2.53",
"@types/react-dom": "^18.2.18",
"autoprefixer": "^10.4.17",
"eslint": "^8.56.0",
"eslint-config-next": "^14.1.0",
"postcss": "^8.4.33",
"sass": "^1.70.0",
"stylelint": "^16.2.1",
"stylelint-config-clean-order": "^5.4.1",
"stylelint-config-standard-scss": "^13.0.0",
"stylelint-order": "^6.0.4",
"ts-node": "^10.9.2"
}
}