-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
72 lines (72 loc) · 2.02 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
{
"name": "gxanime-api",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"start": "cross-env NODE_ENV=production node dist/index.js",
"dev": "cross-env NODE_ENV=development nodemon src/index.ts",
"build": "tsc",
"scripts": "cross-env NODE_ENV=development npx ts-node src/scripts/index.ts",
"prepare": "husky install",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@hapi/boom": "^9.1.2",
"@sendgrid/mail": "^7.4.2",
"bcryptjs": "^2.4.3",
"chalk": "^4.1.1",
"cli-select": "^1.1.2",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv-flow": "^3.2.0",
"express": "^4.17.1",
"helmet": "^4.6.0",
"joi": "^17.3.0",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^3.1.2",
"lodash.omit": "^4.5.0",
"mongoose": "^5.11.14",
"passport": "^0.4.1",
"passport-http": "^0.3.0",
"passport-jwt": "^4.0.0",
"prompt": "^1.1.0",
"query-string": "^6.13.8",
"typescript": "^4.1.3"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.9",
"@types/dotenv-flow": "^3.1.0",
"@types/express": "^4.17.11",
"@types/jsonwebtoken": "^8.5.0",
"@types/lodash.omit": "^4.5.6",
"@types/node": "^14.14.22",
"@types/passport-http": "^0.3.8",
"@types/passport-jwt": "^3.0.5",
"@types/prompt": "^1.1.0",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"nodemon": "^2.0.7",
"prettier": "^2.3.1",
"ts-node": "^9.1.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}