-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
64 lines (64 loc) · 1.86 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
{
"name": "palette-backend",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:IEEE-VIT/palette-backend.git",
"author": "r-ush <aarush.bhatt@gmail.com>",
"license": "MIT",
"scripts": {
"start": "node ./dist/index.js",
"dev": "nodemon --watch 'src/**/*.ts' --exec ts-node src/index.ts",
"lint": "./node_modules/.bin/eslint --ignore-path .gitignore . --fix",
"build": "tsc",
"prepare": "husky install",
"pre-commit": "lint-staged",
"spin-up": "nodemon --watch 'src/**/*.ts' --exec ts-node src/index.ts"
},
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/node": "^15.12.0",
"@types/passport": "^1.0.6",
"@types/passport-google-oauth20": "^2.0.7",
"@types/passport-jwt": "^3.0.5",
"@types/shortid": "0.0.29",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.25.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"dependencies": {
"aws-sdk": "^2.921.0",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"joi": "^17.4.0",
"jsonwebtoken": "^8.5.1",
"moment-timezone": "^0.5.33",
"mongoose": "^5.12.7",
"multer": "^1.4.2",
"passport": "^0.4.1",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.0",
"recaptcha-verify": "^0.1.1",
"shortid": "^2.2.16",
"winston": "^3.3.3"
},
"lint-staged": {
"*.ts": [
"./node_modules/.bin/eslint --ignore-path .gitignore . --fix",
"git add"
]
}
}