-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.85 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
{
"name": "nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"postinstall": "prisma generate",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"migrate": "dotenv -e .env.local -- npx prisma migrate dev",
"seed": "dotenv -e .env.local -- npx prisma db seed"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@auth0/nextjs-auth0": "3.3.0",
"@babel/core": "7.22.1",
"@babel/plugin-transform-modules-commonjs": "7.21.5",
"@babel/preset-env": "7.22.4",
"@babel/preset-react": "7.22.3",
"@babel/preset-typescript": "7.23.2",
"@chakra-ui/icons": "2.1.1",
"@chakra-ui/react": "2.8.2",
"@emotion/react": "11.11.1",
"@emotion/styled": "11.11.0",
"@nivo/core": "0.80.0",
"@nivo/line": "0.80.0",
"@prisma/client": "5.6.0",
"@testing-library/react": "14.0.0",
"@types/jest": "29.5.2",
"@types/nprogress": "0.2.3",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
"@types/seedrandom": "3.0.5",
"@typescript-eslint/eslint-plugin": "6.9.1",
"@typescript-eslint/parser": "6.9.1",
"@vercel/kv": "0.2.2",
"babel-jest": "29.5.0",
"framer-motion": "10.16.4",
"jest": "29.5.0",
"jest-environment-jsdom": "29.5.0",
"lizod": "0.2.6",
"next": "14.0.3",
"nprogress": "0.2.0",
"prisma": "5.6.0",
"pure-react-carousel": "1.30.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hotkeys-hook": "4.3.2",
"react-icons": "4.7.1",
"scrambow": "1.7.0",
"seedrandom": "3.0.5",
"swr": "2.2.4",
"typescript": "5.2.2",
"whatwg-fetch": "3.6.2"
},
"devDependencies": {
"eslint": "8.30.0",
"eslint-config-next": "14.0.3",
"prettier": "3.1.0",
"ts-node": "10.9.1"
}
}