forked from jdvanegas/nabucodonosor_server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 823 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
{
"name": "nabucodonosor_server",
"version": "1.0.0",
"description": "Nabucodonosor Sever with Graphql, Express and MongoDb",
"main": "dist/index.js",
"scripts": {
"build": "babel src -d dist --source-maps",
"start": "nodemon src/index.js --exec babel-node",
"serve": "node dist/index.js",
"clean": "rimraf dist"
},
"author": "Juan David Vanegas",
"license": "ISC",
"dependencies": {
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"graphql": "^14.6.0",
"graphql-tools": "^4.0.7",
"graphql-type-datetime": "^0.2.4",
"mongoose": "^5.9.5",
"mqtt": "^4.0.1",
"rimraf": "^3.0.2"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/preset-env": "^7.9.0",
"nodemon": "^2.0.2"
}
}