This repository was archived by the owner on Feb 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.92 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.92 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
{
"name": "nodejs-api-boilerplate",
"version": "1.0.0",
"main": "./src/index.ts",
"license": "MIT",
"scripts": {
"build": "yarn build:clean&&yarn build:dist&&yarn build:copy",
"build:clean": "rimraf ./dist",
"build:dist": "tsc --build tsconfig.build.json",
"build:copy": "cp .env ./dist",
"start": "set NODE_ENV=production&node ./dist/app/index.js",
"dev": "set NODE_ENV=development&&tsnd -r tsconfig-paths/register --respawn --transpile-only --ignore-watch node_modules --no-notify ./src",
"test": "set NODE_ENV=test&&jest --i --no-cache --verbose --runInBand --bail",
"prod": "yarn build&&yarn start",
"lint": "eslint src --ext .ts"
},
"dependencies": {
"@prisma/client": "^3.5.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.1",
"class-validator-jsonschema": "^3.1.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"module-alias": "^2.2.2",
"multer": "^1.4.3",
"reflect-metadata": "^0.1.13",
"routing-controllers": "^0.9.0",
"routing-controllers-openapi": "^3.1.0",
"swagger-ui-express": "^4.1.6",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.2",
"@types/module-alias": "^2.0.1",
"@types/multer": "^1.4.7",
"@types/node": "^16.11.12",
"@types/supertest": "^2.0.11",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"prisma": "^3.5.0",
"supertest": "^6.1.6",
"ts-jest": "^27.0.7",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^3.11.0",
"typescript": "^4.4.4"
}
}