-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
108 lines (108 loc) Β· 3.56 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "residents",
"version": "0.2.22",
"author": "Conor Luddy <[email protected]>",
"license": "MIT",
"description": "Residents is a Node.js Express back-end foundation designed for bootstrapping new projects quickly and efficiently. Its main goal is to set up a robust infrastructure for user management, because users are the core of any application. These users are your Residents. It leverages a robust stack including Postgres, Drizzle ORM, JWT, PassportJS, Docker and Swagger to streamline development and deployment processes.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/conorluddy/residents.git"
},
"bugs": {
"url": "https://github.com/conorluddy/residents/issues"
},
"homepage": "https://www.residents.rest",
"scripts": {
"build": "tsc",
"dev": "ts-node-dev --respawn --transpile-only src/server.ts",
"dockerup": "docker-compose up -d",
"generate": "drizzle-kit generate",
"introspect": "drizzle-kit introspect",
"lint": "eslint .",
"migrate": "drizzle-kit migrate",
"prepare": "husky",
"prettier": "prettier --write .",
"push": "drizzle-kit push",
"seed:owner": "ts-node --transpile-only src/db/utils/seedUserZero.ts",
"seed": "ts-node --transpile-only src/db/utils/seedUsers.ts",
"start": "node dist/server.js",
"studio": "drizzle-kit studio",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"test": "jest",
"typecoverage:detail": "type-coverage --detail",
"typecoverage": "type-coverage"
},
"typeCoverage": {
"atLeast": 90,
"ignoreCatch": true,
"strict": true,
"ignore": [
"node_modules/**/*"
]
},
"dependencies": {
"@paralleldrive/cuid2": "^2.2.2",
"@sendgrid/mail": "^8.1.4",
"@types/cors": "^2.8.17",
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"drizzle-orm": "^0.39.2",
"express": "^5.0.1",
"express-rate-limit": "^7.5.0",
"google-auth-library": "^9.15.1",
"helmet": "^8.0.0",
"jsonwebtoken": "^9.0.2",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"pg": "^8.13.1",
"reflect-metadata": "^0.2.2",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"validator": "^13.12.0",
"winston": "^3.17.0"
},
"devDependencies": {
"@eslint/compat": "^1.2.6",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.19.0",
"@faker-js/faker": "^9.4.0",
"@types/bcrypt": "^5.0.2",
"@types/cookie-parser": "^1.4.8",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.8",
"@types/node": "^22.10.10",
"@types/passport": "^1.0.17",
"@types/passport-google-oauth20": "^2.0.16",
"@types/pg": "^8.11.10",
"@types/supertest": "^6.0.2",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.7",
"@types/validator": "^13.12.2",
"@typescript-eslint/parser": "^8.23.0",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"drizzle-kit": "^0.30.4",
"eslint": "^9.20.0",
"eslint-config-prettier": "^10.0.1",
"globals": "^15.14.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"openapi-typescript": "^7.6.1",
"prettier": "^3.4.2",
"superagent": "^10.1.1",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"type-coverage": "^2.29.7",
"typescript-eslint": "^8.22.0",
"typescript": "^5.7.3"
}
}