-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.39 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
44
45
46
47
48
49
50
51
{
"name": "backend",
"version": "1.0.0",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"build": "tsc",
"prestart": "yarn build",
"start": "node ./dist/index.js",
"dev": "ts-node-dev --files ./src/index.ts --respawn --transpile-only ",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "yarn eslint ./src/**/*.ts"
},
"dependencies": {
"@overnightjs/core": "^1.7.5",
"axios": "^0.20.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"form-data": "^3.0.0",
"mongoose": "5.11.15",
"multer": "^1.4.2",
"nodemon": "^1.19.1",
"sharp": "^0.25.4",
"socket.io": "^2.2.0",
"swagger-ui-express": "^4.1.6",
"yup": "^0.32.9"
},
"devDependencies": {
"@types/cors": "^2.8.7",
"@types/express": "^4.17.8",
"@types/jest": "^26.0.14",
"@types/mongoose": "^5.10.3",
"@types/multer": "^1.4.4",
"@types/node": "^14.11.1",
"@types/sharp": "^0.26.0",
"@types/socket.io": "^2.1.11",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.1",
"jest": "^26.4.2",
"lint-staged": "^11.0.1",
"ts-jest": "^26.4.0",
"ts-node-dev": "^1.0.0-pre.63",
"typescript": "^4.0.3"
}
}