-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.74 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": "crystal-index",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:Sammii-HK/crystal-index.git",
"author": "Samantha Kellow <sammii.h@icloud.com>",
"license": "MIT",
"type": "module",
"engines": {
"node": "^16.x"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"lint": "next lint",
"migrate": "npx prisma migrate dev",
"test": "jest --watch",
"vercel-build": "prisma generate && next build && prisma migrate deploy"
},
"prisma": {
"seed": "node --loader ts-node/esm prisma/seed.ts"
},
"dependencies": {
"@next-auth/prisma-adapter": "^1.0.3",
"@prisma/client": "^3.11.0",
"@react-three/drei": "^9.66.1",
"@react-three/fiber": "^8.13.0",
"@types/formidable": "^2.0.4",
"@types/sharp": "^0.30.0",
"@types/three": "^0.150.2",
"axios": "^0.26.1",
"bulma": "^0.9.3",
"classnames": "^2.3.1",
"d3": "^4.0.0",
"d3-geo": "^3.0.1",
"formidable": "^2.0.1",
"next": "^13.4.6",
"next-auth": "^4.3.1",
"next-sitemap": "^4.1.3",
"node-sass": "^7.0.1",
"openai": "^3.2.1",
"react": "^18.2.0",
"react-d3-library": "^1.1.8",
"react-dom": "^18.2.0",
"react-icons": "^4.3.1",
"react-responsive-carousel": "^3.2.23",
"sass": "^1.62.1",
"sharp": "^0.30.3",
"three": "^0.152.1",
"topojson": "^3.0.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.3",
"@testing-library/react": "^13.0.0",
"@types/node": "17.0.21",
"@types/react": "17.0.40",
"eslint": "8.11.0",
"eslint-config-next": "^13.3.1",
"jest": "^27.5.1",
"prisma": "^4.16.0",
"ts-node": "^10.7.0",
"typescript": "4.6.2"
}
}