-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.7 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.7 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "node-starter-template",
"version": "1.0.0",
"description": "",
"main": "main.js",
"type": "module",
"scripts": {
"dev": "nodemon",
"run": "bash ./scripts/run.sh",
"start": "cross-env NODE_ENV=production node --loader ts-paths-esm-loader src/main.ts",
"lint": "eslint --ext .ts src",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tobycodes/node-starter-template.git"
},
"keywords": [],
"author": "David Olubusoye",
"license": "ISC",
"bugs": {
"url": "https://github.com/tobycodes/node-starter-template/issues"
},
"homepage": "https://github.com/tobycodes/node-starter-template#readme",
"dependencies": {
"@swc/core": "^1.3.27",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"argon2": "^0.30.3",
"aws-sdk": "^2.1304.0",
"better-sqlite3": "^8.0.1",
"config": "^3.3.9",
"cookie-session": "^2.0.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"helmet": "^6.0.1",
"multer": "^1.4.5-lts.1",
"passport": "^0.5",
"passport-local": "^1.0.0",
"pg": "^8.8.0",
"pino": "^8.8.0",
"reflect-metadata": "^0.1.13",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.6.0",
"ts-node": "^10.9.1",
"ts-paths-esm-loader": "^1.4.0",
"tsconfig-paths": "^4.1.2",
"tslib": "^2.4.1",
"typeorm": "^0.3.11",
"uuid": "^9.0.0"
},
"devDependencies": {
"@jest/globals": "^29.3.1",
"@types/config": "^3.3.0",
"@types/cookie-session": "^2.0.44",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.15",
"@types/jest": "^29.2.6",
"@types/multer": "^1.4.7",
"@types/node": "^18.11.18",
"@types/passport": "^1.0.11",
"@types/passport-local": "^1.0.35",
"@types/supertest": "^2.0.12",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"eslint": "^8.32.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-security": "^1.6.0",
"husky": "^7.0.0",
"jest": "^29.3.1",
"lint-staged": "^13.1.0",
"pino-pretty": "^9.1.1",
"prettier": "^2.8.3",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"typescript": "^4.9.4"
},
"engines": {
"node": ">=16.0.0"
}
}