-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.82 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
{
"name": "online-auction",
"version": "1.1.0",
"type": "module",
"scripts": {
"_prettier": "prettier \"**/*.{js,ts,tsx,json,md,css,html}\"",
"git:hook:precommit": "lint-staged --cwd .",
"git:hook:commit": "npx @commitlint/cli --edit",
"lint": "concurrently \"npm:lint:*\"",
"lint:js": "npx eslint . --max-warnings=0",
"lint:type": "npx tsc --noEmit",
"lint:format": "npm run _prettier -- --check",
"lint:trash": "knip",
"lint:fs": "ls-lint",
"start:dev": "tsx watch src/app.ts",
"start:dev:client": "npx webpack --watch --config ./src/client/webpack.config.mjs",
"start": "node build/app.js",
"ci:prepare": "simple-git-hooks",
"build:client": "npx webpack build --config ./src/client/webpack.config.mjs",
"build": "tsc -p tsconfig.json && tsc-alias -p tsconfig.json && npm run build:client",
"format": "npx prettier . --write",
"migrate:up": "npx sequelize-cli db:migrate",
"migrate:undo": "npx sequelize-cli db:migrate:undo"
},
"author": "GEOFARL",
"devDependencies": {
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@ls-lint/ls-lint": "^2.2.2",
"@types/cookie-parser": "^1.4.7",
"@types/express": "^4.17.21",
"@types/node": "^20.11.24",
"@types/passport": "^1.0.16",
"@types/passport-jwt": "^4.0.1",
"@types/pg": "^8.11.5",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"concurrently": "^8.2.2",
"css-loader": "^6.10.0",
"danger": "^11.3.1",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-perfectionist": "^2.5.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-sonarjs": "^0.24.0",
"eslint-plugin-unicorn": "^51.0.1",
"knip": "^5.0.3",
"lint-staged": "^15.2.2",
"prettier": "3.2.5",
"sequelize-cli": "^6.6.2",
"simple-git-hooks": "^2.10.0",
"style-loader": "^3.3.4",
"ts-loader": "^9.5.1",
"tsc-alias": "^1.8.8",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"bcrypt": "^5.1.1",
"convict": "^6.2.4",
"cookie-parser": "^1.4.6",
"dotenv": "^16.4.5",
"ejs": "^3.1.9",
"express": "^4.18.3",
"jsonwebtoken": "^9.0.2",
"node-cron": "^3.0.3",
"notyf": "^3.10.0",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"pexels": "^1.4.0",
"pg": "^8.11.5",
"pg-hstore": "^2.3.4",
"pino": "^8.19.0",
"pino-pretty": "^10.3.1",
"random-words": "^2.0.1",
"sequelize": "^6.37.3",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"swiper": "^11.1.0",
"zod": "^3.22.4"
},
"simple-git-hooks": {
"pre-commit": "npm run lint:type && npm run git:hook:precommit",
"commit-msg": "npm run git:hook:commit"
}
}