-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.06 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": "honeypots",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@types/bcrypt": "^3.0.0",
"@types/cli-progress": "^3.9.1",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/faker": "^5.5.0",
"@types/jsonwebtoken": "^8.5.1",
"@types/morgan": "^1.9.2",
"@types/passport": "^1.0.6",
"@types/passport-facebook": "^2.1.10",
"@types/passport-google-oauth20": "^2.0.7",
"@types/passport-jwt": "^3.0.5",
"@types/passport-local": "^1.0.33",
"@types/validatorjs": "^3.15.0",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"cli-progress": "^3.9.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.23.0",
"eslint-config-standard": "^16.0.2",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-import-helpers": "^1.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^5.0.0",
"faker": "^5.5.2",
"husky": "^5.2.0",
"lint-staged": "^10.5.4",
"prisma": "^2.21.2",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.3"
},
"scripts": {
"prepare": "husky install",
"lint": "eslint *.ts --no-error-on-unmatched-pattern",
"lint:fix": "npm run lint -- --fix",
"predev": "docker-compose up -d",
"dev": "ts-node-dev --inspect --respawn --transpile-only src/server.ts"
},
"dependencies": {
"@prisma/client": "^2.21.2",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"date-fns": "^2.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^4.4.1",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.2",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-facebook": "^3.0.0",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"validatorjs": "^3.22.1"
},
"_moduleAliases": {
"@": "src"
}
}