-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.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": "upload-api",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "yarn build && node dist/server.js",
"start:watch": "nodemon dist/server.js",
"build": "tsc",
"build:watch": "tsc --watch",
"test": "jest",
"lint": "eslint"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"multer": "^1.4.3",
"nanoid": "^3.1.28",
"sharp": "^0.29.1"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/faker": "^6.6.9",
"@types/jest": "^27.0.2",
"@types/multer": "^1.4.7",
"@types/node": "^16.10.1",
"@types/sharp": "^0.29.2",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.2",
"faker": "^5.5.3",
"jest": "^27.2.2",
"nodemon": "^2.0.12",
"ts-jest": "^27.0.5",
"tsc": "^2.0.3",
"typescript": "^4.4.3"
}
}