-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 982 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": "typescript-restfulapi",
"version": "1.0.0",
"description": "This is a simple RESTful API developed with TypeScript, Express & Mongoose",
"main": "index.ts",
"scripts": {
"server": "tsc && nodemon ./build/index.js",
"start": "node ./build/index.js",
"ts": "tsc -w"
},
"author": "SombreroElGringo",
"license": "MIT",
"dependencies": {
"@types/dotenv": "^4.0.2",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.18.2",
"compression": "^1.7.2",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"dotenv": "^5.0.0",
"express": "^4.16.2",
"helmet": "^3.11.0",
"lodash": "^4.17.5",
"mongoose": "^5.0.7",
"morgan": "^1.9.0"
},
"devDependencies": {
"@types/body-parser": "^1.16.8",
"@types/cookie-parser": "^1.4.1",
"@types/cors": "^2.8.3",
"@types/express": "^4.11.1",
"@types/mongoose": "^5.0.2",
"@types/node": "^9.4.6",
"nodemon": "^1.18.5",
"typescript": "^2.7.2"
}
}