-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.82 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.82 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
{
"name": "w-build",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:generate": "sh -exu -c 'cd src/infrastructure/database && npx drizzle-kit generate'",
"db:migrate": "sh -exu -c 'cd src/infrastructure/database && npx drizzle-kit migrate'",
"db:check": "sh -exu -c 'cd src/infrastructure/database && npx drizzle-kit check'",
"db:mock": "bash -exua -c 'source .env && source .env.local && tsx src/infrastructure/database/mock.ts'",
"lint:check": "eslint --report-unused-disable-directives .",
"lint:fix": "eslint --fix --report-unused-disable-directives .",
"lint:css:check": "stylelint '**/*.{css,scss}'",
"lint:css:fix": "stylelint '**/*.{css,scss}' --fix",
"ci": "echo '\\033[1;31m⚠️ Remember to remove the --legacy-peer-deps flag eventually!\\033[0m' && npm install --legacy-peer-deps && rm -rf .next/ && npm run build && npm run lint:check && npm run lint:css:check"
},
"dependencies": {
"@radix-ui/react-label": "2.1.1",
"@radix-ui/react-progress": "1.1.1",
"@radix-ui/react-separator": "1.1.1",
"@radix-ui/react-slot": "1.1.1",
"@radix-ui/react-tabs": "1.1.2",
"autoprefixer": "^10.4.20",
"bcryptjs": "^2.4.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.36.3",
"lucide-react": "^0.454.0",
"next": "15.0.3",
"next-auth": "^4.24.10",
"pg": "^8.13.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.23.8"
},
"devDependencies": {
"@faker-js/faker": "^9.2.0",
"@stylistic/eslint-plugin": "^1.8.1",
"@stylistic/eslint-plugin-ts": "^1.8.1",
"@types/bcryptjs": "^2.4.6",
"@types/lodash": "^4.17.13",
"@types/node": "^20",
"@types/pg": "^8.11.10",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"drizzle-kit": "^0.28.0",
"eslint": "^8.57.1",
"eslint-config-next": "^15.0.3",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-import-helpers": "^2.0.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-app": "^6.2.2",
"eslint-plugin-react-refresh": "^0.4.14",
"eslint-plugin-require-explicit-generics": "^1.0.0",
"postcss": "^8.5",
"prettier": "^3.3.3",
"stylelint": "^16.10.0",
"stylelint-config-prettier-scss": "^1.0.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-config-tailwindcss": "^1.0.0",
"stylelint-prettier": "^5.0.2",
"tailwindcss": "^3.4.17",
"tsx": "^4.19.2",
"typescript": "^5"
}
}