-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 963 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 963 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
{
"name": "task-manager-graphql-apollo-API",
"version": "1.0.0",
"description": "Task manager API",
"main": "server.js",
"repository": "git@github.com:danielotieno/task-manager-graphql-apollo-API.git",
"author": "Daniel Otieno <danielotieno.ke@gmail.com>",
"license": "MIT",
"scripts": {
"start": "node start.js",
"start-dev": "nodemon --exec babel-node server.js"
},
"dependencies": {
"@babel/node": "^7.8.4",
"@babel/plugin-transform-regenerator": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.6",
"@babel/runtime": "^7.8.4",
"apollo-server-express": "^2.10.1",
"babel-eslint": "^10.1.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"uuid": "^7.0.1"
},
"devDependencies": {
"@babel/core": "^7.8.6",
"nodemon": "^2.0.2"
}
}