-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.29 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
{
"name": "api_ts_zod",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "NODE_ENV=development ts-node-dev --respawn --transpile-only src/app.ts",
"build": "tsc && npm run copy-views",
"copy-views": "mkdir -p build/views && cp -r src/views/** build/views",
"start": "NODE_ENV=production node build/app.js",
"lint": "eslint . --ext .ts",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"test": "jest --detectOpenHandles",
"test:watch": "jest --watchAll",
"prepare": "husky",
"seed:dev": "NODE_ENV=development ts-node ./dev-data/seed/index.ts",
"seed:production": "NODE_ENV=production ts-node ./dev-data/seed/index.ts"
},
"keywords": [],
"author": "Siegfried Bozza",
"license": "ISC",
"description": "",
"dependencies": {
"@types/nodemailer": "^6.4.14",
"@types/pug": "^2.0.10",
"bcrypt": "^5.1.1",
"cloudinary": "^2.2.0",
"config": "^3.3.11",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dayjs": "^1.11.10",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"html-to-text": "^9.0.5",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"mongodb-memory-server": "^9.1.8",
"mongoose": "^8.3.3",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.13",
"pino": "^8.20.0",
"pino-pretty": "^11.0.0",
"pug": "^3.0.2",
"sharp": "^0.33.3",
"slugify": "^1.6.6",
"stripe": "^15.3.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/body-parser": "^1.19.5",
"@types/config": "^3.3.4",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/html-to-text": "^9.0.4",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/lodash": "^4.17.0",
"@types/multer": "^1.4.11",
"@types/node": "^20.12.7",
"@types/pino": "^7.0.5",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"copyfiles": "^2.4.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.5"
}
}