-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
80 lines (80 loc) · 2.39 KB
/
package.json
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
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "notion-api",
"version": "1.0.0",
"description": "",
"main": "dist/main/server.js",
"scripts": {
"build": "rimraf dist && tsc -p tsconfig-build.json",
"build:watch": "npm run build -- --watch",
"start": "node dist/main/server.js",
"dev": "nodemon -L --watch ./dist ./dist/main/server.js",
"start:dev": "npm run build && npm run start",
"test": "jest --passWithNoTests --runInBand --no-cache",
"test:staged": "npm run test --findRelatedTests",
"test:ci": "npm run test -- --coverage",
"test:only": "jest -- -t SignUpController.spec.ts",
"lint": "eslint --ignore-path .gitignore --ext .ts --fix",
"prepare": "husky install",
"update": "npm update"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@shelf/jest-mongodb": "^4.1.7",
"@types/ajv": "^1.0.0",
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.1",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^20.1.3",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"concurrently": "^8.0.1",
"eslint": "^8.40.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.0",
"jest": "^29.5.0",
"lint-staged": "^13.2.2",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"rimraf": "^5.0.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"dependencies": {
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"bcrypt": "^5.1.0",
"dotenv": "^16.0.3",
"eslint-import-resolver-typescript": "^3.5.5",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"module-alias": "^2.2.2",
"mongodb": "^5.2.0"
},
"_moduleAliases": {
"@domain": "./dist/domain",
"@application": "./dist/application",
"@infrastructure": "./dist/infrastructure",
"@main": "./dist/main"
},
"lint-staged": {
"*.ts": [
"npm run lint",
"npm run test:staged"
]
}
}