-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.88 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": "rootvc-access",
"version": "0.0.0",
"description": "RootVC Access",
"author": "Root Ventures",
"license": "MIT",
"private": true,
"scripts": {
"build": "next build",
"migrate": "npx prisma migrate",
"dev": "npm-run-all -p dev:startup dev:next",
"dev:next": "next dev",
"dev:startup": "while true; do ./script/startup.sh; sleep 1; done",
"start": "npm-run-all -p start:startup start:next",
"start:next": "next start",
"start:startup": "./script/startup.sh"
},
"devDependencies": {
"@types/express": "4.17.13",
"@types/node": "^17.0.21",
"node-loader": "^1.0.1",
"prisma": "^3.15.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
},
"dependencies": {
"@aws-sdk/client-cloudwatch-logs": "^3.82.0",
"@prisma/client": "^3.15.2",
"@sentry/nextjs": "^7.1.1",
"axios": "^0.27.2",
"clearbit": "^1.3.5",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"express": "~4.16.1",
"googleapis": "^100.0.0",
"graphile-worker": "^0.12.2",
"helmet": "^5.0.2",
"http-errors": "~1.6.3",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"next": "^12.1.6",
"nextjs-cors": "^2.1.1",
"npm-run-all": "^4.1.5",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"supertokens-auth-react": "^0.21.3",
"supertokens-node": "^9.2.3"
},
"browser": {
"fs": false,
"path": false,
"os": false
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}