-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.02 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
{
"name": "node-rest-api",
"version": "1.0.0",
"description": "This project is a REST API with Node.js and Express.",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "nodemon --watch \"*.ts\" --exec \"ts-node\" ./src/index.ts",
"eslint:fix": "eslint --fix",
"build": "tsc",
"deploy": "tsc && pm2 start ./build/index.js --name sosrs-api"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/mongoose": "^5.10.3",
"@types/node": "^14.14.22",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-sort-destructure-keys": "^1.3.5",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"@types/cors": "^2.8.17",
"axios": "^1.6.8",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mongoose": "^5.12.1"
}
}