-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.57 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
{
"name": "meetup",
"version": "1.0.0",
"main": "build/index.js",
"author": "Stalise <stas.liseenko@yahoo.com> (https://github.com/Stalise)",
"license": "ISC",
"scripts": {
"start": "node build/index.js",
"build": "tsc && tsc-alias",
"dev": "nodemon -e .js,.ts --exec ts-node -r tsconfig-paths/register ./src/index.ts",
"format": "prettier --write ./",
"lint": "eslint ./**/*.{js,ts} -c .eslintrc.cjs --max-warnings=0",
"lint:fix": "yarn lint --fix",
"staged:format": "prettier --write",
"staged:lint": "eslint -c .eslintrc.cjs --max-warnings=0"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.15",
"@types/joi": "^17.2.3",
"@types/jsonwebtoken": "^9.0.1",
"@types/node": "^18.11.18",
"@types/pg": "^8.6.6",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"nodemon": "^2.0.20",
"prettier": "^2.8.1",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.2",
"tsconfig-paths": "^4.1.2",
"typescript": "^4.9.4"
},
"dependencies": {
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"joi": "^17.7.0",
"jsonwebtoken": "^9.0.0",
"pg": "^8.8.0",
"swagger-jsdoc": "^6.2.7",
"swagger-ui-express": "^4.6.0"
}
}