-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.27 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.27 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
68
{
"name": "clean-node-api",
"version": "2.5.0",
"description": "An node js api with clean architecture",
"private": false,
"main": "index.js",
"keywords": [],
"author": "Crisler Wintler",
"license": "MIT",
"scripts": {
"start": "node dist/main/server.js",
"prepare": "husky install",
"lint": "tsc --noemit",
"test": "vitest run",
"debug": "tsnd --inspect=0.0.0.0:9222 --respawn --transpile-only --ignore-watch node_modules -r tsconfig-paths/register src/main/server.ts",
"build": "rimraf dist && npm run lint && tsup src/* -- format cjs,esm --dts --sourcemap --external validator",
"dev": "tsnd --respawn --transpile-only --ignore-watch node_modules -r tsconfig-paths/register src/main/server.ts",
"test:ci": "npm test -- --coverage",
"test:dev": "vitest",
"test:integration": "vitest",
"test:staged": "npm run test && npm run lint",
"build:ci": "npm run test:ci && npm run build",
"format": "prettier --write src/*"
},
"dependencies": {
"@types/bcrypt": "^5.0.0",
"@types/jsonwebtoken": "^9.0.1",
"bcrypt": "^5.1.0",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"mongo-round": "^1.0.0",
"mongodb": "^6.3.0",
"swagger-ui-express": "^5.0.0",
"validator": "^13.11.0"
},
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"@rollup/plugin-alias": "^5.1.0",
"@types/express": "^4.17.17",
"@types/node": "^20.6.2",
"@types/supertest": "^2.0.12",
"@types/swagger-ui-express": "^4.1.3",
"@types/validator": "^13.11.1",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.58.0",
"@vitest/coverage-c8": "^0.32.2",
"@vitest/coverage-v8": "^0.34.3",
"bson-objectid": "^2.0.4",
"eslint": "^8.48.0",
"eslint-config-prettier": "8.8.0",
"eslint-config-standard-with-typescript": "^35.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"mongodb-memory-server": "^9.1.4",
"prettier": "2.8.8",
"rimraf": "^5.0.5",
"supertest": "^6.3.3",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"tsup": "^7.2.0",
"typescript": "^5.3.3",
"vite": "^4.2.1",
"vitest": "^0.32.2"
}
}