-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.14 KB
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
{
"name": "community",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "ts-node ./src/index.ts",
"dev": "nodemon --watch src/* --watch src/**/* -e ts --exec ts-node src/index.ts"
},
"author": "",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.0.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-typescript": "^4.0.1",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"prettier": "^1.18.2",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
},
"dependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.7",
"@types/helmet": "0.0.47",
"@types/jsonwebtoken": "^8.5.0",
"@types/morgan": "^1.9.1",
"@types/redis": "^2.8.24",
"@types/uuid": "^8.0.0",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"express": "^4.17.1",
"helmet": "^3.23.3",
"jsonwebtoken": "^8.5.1",
"moment": "^2.27.0",
"morgan": "^1.10.0",
"mysql2": "^2.1.0",
"redis": "^3.0.2",
"sequelize": "^6.3.0",
"uuid": "^8.2.0"
}
}