-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 962 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
{
"name": "workshopreact",
"version": "1.0.0",
"description": "API REST em NodeJs para gerenciar os crushes da Lais",
"main": "server.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "set NODE_ENV=development && C:/Users/yohan/Desktop/Projects/workshopReact/node_modules/.bin/ts-node ./server/server.ts nodemon"
},
"keywords": [
"API",
"Restful",
"Node",
"MongoDB"
],
"author": "Yohana Heringer",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.3",
"http-status": "^1.2.0",
"mongoose": "^5.3.1",
"morgan": "^1.9.1",
"nodemon": "^1.18.4"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/express": "^4.16.0",
"@types/http-status": "^0.2.30",
"@types/mongoose": "^5.2.18",
"@types/morgan": "^1.7.35",
"@types/node": "^10.11.4",
"ts-node": "^7.0.1",
"typescript": "^3.1.1"
}
}