-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.82 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "ug-admissions",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"style-check": "prettier --check 'app/**/*.{ts,tsx,js,jsx,json,css,scss,md}'",
"format": "lint-staged",
"prepare": "husky"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"dependencies": {
"@faker-js/faker": "^8.4.1",
"@json2csv/node": "^7.0.6",
"@prisma/client": "^6.1.0",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/themes": "^3.1.3",
"@tanstack/react-table": "^8.20.5",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"classnames": "^2.5.1",
"commitlint": "^19.4.1",
"conventional-changelog-conventionalcommits": "^8.0.0",
"csv-parse": "^5.5.6",
"d": "^1.0.2",
"dataframe-js": "^1.4.4",
"date-fns": "^3.6.0",
"husky": "^9.1.5",
"lint-staged": "^15.2.9",
"lodash": "^4.17.21",
"next": "^14.2.13",
"next-auth": "^5.0.0-beta.25",
"prettier": "^3.3.3",
"prisma": "^6.1.0",
"react": "^18",
"react-dom": "^18",
"react-dropzone": "^14.2.3",
"react-headless-pagination": "^1.1.6",
"recharts": "^2.12.7",
"tailwindcss": "^3.4.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@onozaty/prisma-db-comments-generator": "^1.0.1",
"@types/dataframe-js": "^1.4.3",
"@types/lodash": "^4.17.10",
"@types/node": "^20.16.2",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.7",
"postcss": "^8",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
}
}