-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 972 Bytes
/
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
{
"name": "node-ionic",
"version": "1.0.0",
"main": "./src/index.ts",
"author": "AlexQuidditch",
"license": "MIT",
"scripts": {
"start": "node ./src/index.js",
"dev": "nodemon",
"debug": "nodemon --inspect=5858 -r ./src/index.ts",
"build": "tsc",
"lint": "eslint ./src --ext .js,.ts,.d.ts"
},
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"nanoid": "^3.1.12",
"ts-node": "^8.10.2",
"tslib": "^2.0.0",
"typescript": "^3.9.7"
},
"devDependencies": {
"@types/cors": "^2.8.6",
"@types/morgan": "^1.9.1",
"@types/multer": "^1.4.3",
"@types/node": "^14.0.27",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"eslint": "^7.5.0",
"eslint-plugin-import": "^2.22.0",
"nodemon": "^2.0.4"
}
}