-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.28 KB
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
{
"name": "reviewtest",
"version": "1.0.0",
"description": "My first godspeed project.",
"main": "dist/index.js",
"scripts": {
"dev": "nodemon -r dotenv ./src/index.ts",
"gen-crud-api": "npx @godspeedsystems/api-generator",
"build": "NODE_ENV=production swc src -d dist && rsync -a --exclude '*.ts' ./src/ ./dist/",
"preview": "node dist/index.js",
"serve": "nodemon --watch src -e ts,js,yaml,json --exec 'npm run build && npm run preview'",
"clean": "rm -rf dist"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.93",
"@types/config": "^3.3.0",
"@types/node": "^18.14.2",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"@godspeedsystems/api-generator": "latest",
"@godspeedsystems/core": "latest",
"@godspeedsystems/plugins-axios-as-datasource": "latest",
"@godspeedsystems/plugins-cron-as-eventsource": "^1.0.0",
"@godspeedsystems/plugins-express-as-http": "latest",
"@godspeedsystems/plugins-kafka-as-datasource-as-eventsource": "^1.0.1",
"@godspeedsystems/plugins-prisma-as-datastore": "latest",
"@prisma/client": "^5.2.0",
"config": "^3.3.9",
"dotenv": "^16.0.3",
"mongodb": "^6.2.0",
"pino-pretty": "^10.2.0",
"prisma": "^5.2.0",
"uuid": "^9.0.1"
}
}