-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.01 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
{
"name": "my-projects",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint ./src --ext .ts",
"lint:fix": "eslint ./src --ext .ts --fix",
"dev": "ts-node-dev src/main.ts",
"build": "tsc",
"start": "node dist/src/main.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.13",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"axios": "^0.23.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"googleapis": "^92.0.0",
"morgan": "^1.10.0",
"multer": "^1.4.3",
"stream": "0.0.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/morgan": "^1.9.3",
"@types/multer": "^1.4.7",
"@types/uuid": "^8.3.3",
"eslint": "^8.1.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.4"
}
}