-
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 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2 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": "1.2.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node dist/main/server.js",
"build": "rimraf dist && tsc",
"debug": "node --inspect=0.0.0.0:9222 --nolazy dist/main/server.js",
"dev": "sucrase-node src/main/server.ts",
"up": "npm run build && docker compose up --watch",
"stop": "docker-compose stop",
"test": "jest --passWithNoTests --silent --noStackTrace --runInBand",
"test:unit": "npm test -- --watch -c jest-unit-config.ts",
"test:integration": "npm test -- --watch -c jest-integration-config.ts",
"test:verbose": "jest --passWithNoTests --runInBand",
"lint": "eslint src --ext .ts --fix",
"test:staged": "npm test -- --findRelatedTests",
"test:ci": "npm test -- --coverage"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@shelf/jest-mongodb": "^4.3.2",
"@types/bcrypt": "^5.0.2",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.7",
"@types/mongodb": "^4.0.7",
"@types/node": "^20.12.7",
"@types/supertest": "^6.0.2",
"@types/validator": "^13.11.10",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"git-commit-msg-linter": "^5.0.7",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"rimraf": "^6.0.1",
"sucrase": "^3.35.0",
"supertest": "^7.0.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"lint-staged": {
"*.ts": [
"eslint --cache --fix",
"git add"
]
},
"dependencies": {
"bcrypt": "^5.1.1",
"express": "^4.19.2",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.6.2",
"validator": "^13.12.0"
},
"engines": {
"node": "20.x"
}
}