-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (72 loc) · 2.13 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
{
"name": "Template",
"version": "1.0.0",
"description": "Template made for postgres database and nodejs",
"scripts": {
"start": "npm run build && node dist/server.js",
"dev": "npm run build && nodemon",
"build": "swc src -d dist --source-maps --copy-files",
"build:tsc": "tsc && tsc-alias",
"lint": "eslint --ignore-path .gitignore --ext .ts src/",
"lint:fix": "npm run lint -- --fix",
"test": "jest --no-cache --detectOpenHandles --setupFiles dotenv/config --runInBand --forceExit --passWithNoTests",
"unit:test": "npm run test ./src/tests/endpoints -- --coverage"
},
"keywords": [],
"author": "pierrot498",
"license": "ISC",
"devDependencies": {
"@swc/cli": "^0.1.57",
"@swc/core": "^1.3.24",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.14",
"@types/helmet": "^4.0.0",
"@types/hpp": "^0.2.2",
"@types/jest": "^29.5.3",
"@types/lodash": "^4.14.189",
"@types/mocha": "^10.0.0",
"@types/morgan": "^1.9.3",
"@types/node": "^18.11.0",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"cross-env": "^7.0.3",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^5.0.0",
"lint-staged": "^13.0.3",
"nodemon": "^2.0.20",
"prettier": "^3.0.0",
"supertest": "^6.3.1",
"swc": "^1.0.11",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsc": "^2.0.4",
"tsc-alias": "^1.7.0",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.9.5",
"winston": "^3.8.2",
"winston-daily-rotate-file": "^4.7.1"
},
"dependencies": {
"@databases/pg": "^5.4.1",
"axios": "^1.1.3",
"axios-mock-adapter": "^1.21.2",
"bcryptjs": "^2.4.3",
"bn.js": "^5.2.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.18.2",
"fs": "^0.0.1-security",
"hpp": "^0.2.3",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"nodemon": "^2.0.20",
"path": "^0.12.7",
"pg": "^8.8.0",
"tslib": "^2.4.0",
"yup": "^0.32.11"
}
}