-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.15 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": "iq-puzzler",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 4000",
"build": "prisma generate && next build",
"serve": "cd out && npx -yes serve -l 4004",
"start": "next start",
"lint": "next lint",
"tsc:watch": "pnpm tsc -noEmit --incremental --watch",
"test": "vitest",
"coverage": "vitest run --coverage",
"seed": "pnpm ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts",
"generateSolutions": "pnpm ts-node --project tsconfig.scripts.json scripts/generateSolutions.ts",
"createLevels": "pnpm ts-node --project tsconfig.scripts.json scripts/createLevels.ts",
"migrate": "pnpm prisma migrate dev",
"postinstall": "prisma generate"
},
"prisma": {
"seed": "pnpm ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@dnd-kit/core": "^6.0.8",
"@dnd-kit/modifiers": "^6.0.1",
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@prisma/client": "4.15.0",
"@types/node": "20.1.3",
"@types/react": "18.2.6",
"@types/react-dom": "18.2.4",
"autoprefixer": "10.4.14",
"classnames": "^2.3.2",
"date-fns": "^2.30.0",
"eslint": "8.40.0",
"eslint-config-next": "13.4.2",
"next": "13.5.2",
"postcss": "8.4.23",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-particles": "^2.11.0",
"react-resize-detector": "^9.1.0",
"react-simple-animate": "^3.5.2",
"tailwindcss": "3.3.2",
"tailwindcss-classnames": "^3.1.0",
"ts-pattern": "^5.0.5",
"tsparticles": "^2.11.0",
"tsparticles-engine": "^2.11.0",
"tsparticles-preset-confetti": "^2.11.0",
"typescript": "5.0.4",
"zod": "^3.21.4"
},
"devDependencies": {
"@svgr/webpack": "^8.0.1",
"@testing-library/react": "^12.1.4",
"@types/node": "17.0.23",
"@types/react": "17.0.43",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@vitejs/plugin-react": "1.3.0",
"jsdom": "^19.0.0",
"prisma": "^4.15.0",
"ts-node": "^10.9.1",
"typescript": "4.6.3",
"vitest": "0.8.4"
}
}