-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 967 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 967 Bytes
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": "swapi",
"version": "0.8.0",
"description": "API for Selwatcher",
"main": "dist/index.js",
"scripts": {
"prebuild": "tslint -c tslint.json -p tsconfig.json --fix",
"start": "node dist/index",
"build": "tsc",
"dev": "nodemon",
"server:watch": "ts-node-dev --respawn --transpile-only src/index.ts"
},
"author": "",
"license": "ISC",
"prestart": "npm run build",
"dependencies": {
"@sendgrid/mail": "^7.4.6",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-validator": "^6.12.1",
"mongoose": "^6.0.1"
},
"devDependencies": {
"@types/body-parser": "^1.19.1",
"@types/cors": "^2.8.12",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.13",
"@types/mongoose": "^5.11.97",
"@types/node": "^16.7.2",
"nodemon": "^2.0.12",
"source-map-support": "^0.5.19",
"ts-node-dev": "^1.1.8",
"tslint": "^6.1.3",
"typescript": "^4.3.5"
}
}