-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.19 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
{
"name": "fastify-postgresql-back-end",
"version": "1.0.0",
"description": "",
"main": "app.ts",
"directories": {
"test": "test"
},
"scripts": {
"build:ts": "tsc",
"dev": "tsc && concurrently -k -p \"[{name}]\" -n \"TypeScript,App\" -c \"yellow.bold,cyan.bold\" \"tsc -w\" \"fastify start --ignore-watch=.ts$ -w -l info -P -p 3001 -d dist/app.js\"",
"compose": "docker-compose up --build -d",
"start": "npm run build:ts && fastify start -p 3001 -l info dist/app.js",
"test": "npm run build:ts && tsc -p test/tsconfig.json && tap --ts -R=specy",
"test:debug": "npm run build:ts && tsc -p test/tsconfig.json && tap --ts -R=spec --no-coverage --no-timeout --node-arg=--inspect-brk"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@nearform/sql": "^1.8.0",
"@sinclair/typebox": "^0.22.1",
"@types/nodemailer": "^6.4.1",
"@types/passport-local": "^1.0.33",
"@types/zxcvbn": "^4.4.1",
"@zxcvbn-ts/core": "*",
"@zxcvbn-ts/language-common": "*",
"@zxcvbn-ts/language-en": "*",
"argon2": "^0.28.3",
"casbin": "^5.11.5",
"cross-env": "^7.0.3",
"env-schema": "^3.0.1",
"fastify": "^3.0.0",
"fastify-autoload": "^3.3.1",
"fastify-casbin": "^2.0.0",
"fastify-cli": "^2.13.0",
"fastify-cors": "^6.0.1",
"fastify-helmet": "^5.3.2",
"fastify-passport": "^0.4.2",
"fastify-plugin": "^3.0.0",
"fastify-postgres": "^3.5.0",
"fastify-rate-limit": "^5.6.2",
"fastify-routes": "^3.1.0",
"fastify-schedule": "^1.0.0",
"fastify-secure-session": "^3.0.0",
"fastify-sensible": "^3.1.0",
"fastify-tsconfig": "^1.0.1",
"fluent-json-schema": "^3.0.0",
"nodemailer": "^6.5.0",
"passport-local": "^1.0.0",
"toad-scheduler": "^1.6.0"
},
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@types/node": "^16.11.10",
"@types/pg": "^8.6.1",
"@types/supertest": "^2.0.11",
"@types/tap": "^15.0.0",
"concurrently": "^6.0.0",
"husky": "^7.0.4",
"nanoid": "^3.1.30",
"pg": "^8.6.0",
"supertest": "^6.1.3",
"tap": "^15.0.9",
"ts-node": "^10.0.0",
"typescript": "^4.5.2"
}
}