-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.07 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
68
69
{
"name": "palette",
"version": "0.1.0",
"private": true,
"scripts": {
"devt": "NODE_OPTIONS='--inspect' next dev --turbo",
"dev": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"export": "next export",
"electron-dev": "concurrently \"npm run dev --turbo\" \"wait-on http://localhost:3000 && electron .\"",
"electron-pack": "electron-builder",
"postinstall": "npm run build && electron-builder install-app-deps",
"test": "jest",
"test:watch": "jest --watch",
"ts-node": "ts-node --compiler-options '{\"module\":\"CommonJS\"}' ",
"prseed": " npx tsx src/prisma/seed/seed.ts"
},
"prisma": {
"seed": "ts-node src/prisma/seed/seed.ts"
},
"license": "MIT",
"dependencies": {
"@ant-design/icons": "^5.3.7",
"@ant-design/nextjs-registry": "^1.0.0",
"@hookform/resolvers": "^3.6.0",
"@prisma/client": "^5.17.0",
"antd": "^5.18.0",
"autoprefixer": "^10.4.19",
"formik": "^2.4.6",
"framer-motion": "^11.2.10",
"fs": "^0.0.1-security",
"next-auth": "^4.0.0",
"nextjs": "^0.0.3",
"pnpm": "^9.6.0",
"postcss": "^8.4.38",
"prisma": "^5.21.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-dropzone": "^14.2.3",
"react-hook-form": "^7.52.0",
"snaplet": "^0.42.1",
"tailwindcss": "^3.4.3",
"yup": "^1.4.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^15.0.7",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.2",
"@types/react": "18.3.3",
"@types/testing-library__jest-dom": "^6.0.0",
"babel-jest": "^29.7.0",
"babel-plugin-react-compiler": "0.0.0-experimental-334f00b-20240725",
"concurrently": "^7.0.0",
"eslint": "^9.4.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"next": "15.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"wait-on": "^7.2.0"
},
"@snaplet/seed": {
"config": "prisma/seed/seed.config.ts"
}
}