-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.84 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.84 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
{
"name": "c14-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node ./dist/server.js",
"dev": "tsx watch --clear-screen=false src/server.ts",
"build": "rimraf ./dist && npx tsc && tsc-alias",
"lint": "eslint . --ext ts --ignore-path .gitignore",
"lint:fix": "npm run lint -- --fix",
"db:migrate": "sequelize-cli db:migrate",
"db:seed": "sequelize db:seed:all",
"db:reset": "sequelize db:drop && sequelize db:create && sequelize db:migrate && sequelize db:seed:all"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"argon2": "^0.31.2",
"compression": "1.7.4",
"cookie-parser": "^1.4.6",
"cors": "2.8.5",
"dotenv": "16.3.1",
"express": "4.18.2",
"express-validator": "^7.0.1",
"jsonwebtoken": "^9.0.2",
"morgan": "1.10.0",
"nodemailer": "^6.9.7",
"pg": "^8.11.3",
"sequelize": "^6.35.1",
"sequelize-typescript": "^2.1.6",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0"
},
"devDependencies": {
"@faker-js/faker": "^8.3.1",
"@types/compression": "1.7.5",
"@types/cookie-parser": "^1.4.6",
"@types/cors": "2.8.17",
"@types/express": "4.17.21",
"@types/jsonwebtoken": "^9.0.5",
"@types/morgan": "1.9.9",
"@types/node": "^20.10.0",
"@types/nodemailer": "^6.4.14",
"@types/sequelize": "^4.28.16",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "6.12.0",
"@typescript-eslint/parser": "6.12.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "5.0.1",
"prettier": "3.1.0",
"rimraf": "^5.0.5",
"sequelize-cli": "^6.6.2",
"tsc-alias": "^1.8.8",
"tsx": "^4.6.2",
"typescript": "^5.3.2"
}
}