-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.28 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
{
"name": "codeiiest-webapi",
"version": "0.0.0",
"main": "index.js",
"scripts": {
"start": "yarn run build && node build/index.js",
"dev": "nodemon src/index.ts",
"lint": "eslint ./src --ext .ts",
"lint:fix": "eslint ./src --ext .ts --fix",
"build":"tsc -p tsconfig.json"
},
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"joi": "^17.3.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.10.14",
"morgan": "^1.10.0",
"redis": "^3.1.1"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/cors": "^2.8.8",
"@types/eslint": "^7.2.4",
"@types/express": "^4.17.9",
"@types/jsonwebtoken": "^8.5.0",
"@types/mongoose": "^5.10.0",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.7",
"@types/redis": "^2.8.28",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"eslint": "^7.13.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"nodemon": "^2.0.6",
"prettier": "^2.1.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
}
}