-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.1 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
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": "node-ts-server-boilerplate",
"version": "1.0.0",
"description": "",
"main": "app.ts",
"scripts": {
"db":"cat prisma/models/*.prisma > prisma/schema.prisma && npx prisma format && npx prisma generate",
"start": "npm run db && node dist/app.js",
"dev": "npm run db && tsx watch src/app.ts",
"build": "npx rollup -c --bundleConfigAsCjs ",
"test": "npx jest",
"deploy-check": "npx zx ./scripts/ci.mjs",
"health-check": "npx zx ./scripts/healthcheck.mjs",
"sandbox": "npx zx ./scripts/sandbox.mjs",
"docker": "npx zx ./scripts/docker.mjs",
"refresh": "rm -f package-lock.json && rm -rf node_modules && npm install",
"postrefresh": "npm audit --fix"
},
"keywords": [],
"author": "Pakalu Papito",
"license": "ISC",
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@rollup/plugin-alias": "^5.0.0",
"@rollup/plugin-terser": "^0.4.3",
"@types/express": "^4.17.15",
"@types/jest": "^29.2.5",
"@types/node": "^20.2.3",
"@types/supertest": "^2.0.12",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"eslint": "^8.40.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"prettier": "2.8.3",
"prisma": "^4.14.0",
"rollup": "^3.23.0",
"tsx": "^3.12.7",
"typescript": "^4.9.5",
"zx": "^7.1.1"
},
"dependencies": {
"@prisma/client": "^4.14.1",
"@rollup/plugin-typescript": "^11.1.1",
"@types/bcrypt": "^3.0.1",
"@types/fs-extra": "^11.0.1",
"@types/jsonwebtoken": "^8.5.9",
"@types/morgan": "^1.9.4",
"aws-sdk": "^2.1292.0",
"axios": "^1.2.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"fast-glob": "^3.2.12",
"jsonwebtoken": "^9.0.0",
"mongodb": "^4.13.0",
"morgan": "^1.10.0",
"swagger-ui-express": "^4.6.0"
}
}