-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 981 Bytes
/
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
{
"private": true,
"type": "module",
"scripts": {
"build": "swc -d build src",
"next-build": "pnpm exec next build",
"next-prod": "pnpm exec next start",
"next-dev": "pnpm exec next dev",
"job-runner": "pnpm run build && node build/scripts/job-runner.js",
"init-db": "pnpm run build && node build/scripts/init-db.js",
"add-place": "pnpm run build && node build/scripts/add-place.js"
},
"devDependencies": {
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.52",
"@types/lodash": "^4.14.192",
"@types/node": "^18.15.11",
"@types/react": "18.0.31",
"typescript": "5.0.3"
},
"dependencies": {
"bullmq": "^3.10.3",
"dotenv": "^16.0.3",
"file-type": "^18.2.1",
"jimp": "^0.22.7",
"lodash": "^4.17.21",
"next": "^13.2.4",
"openai": "^3.2.1",
"pg": "^8.10.0",
"puppeteer": "^19.9.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sequelize": "^6.30.0",
"winston": "^3.8.2"
}
}