-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 852 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
{
"engines": {
"node": "10.x"
},
"name": "node_starter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "babel-watch --exec babel-node server/index.js",
"build": "babel server --out-dir dist",
"start": "node dist/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.7.7",
"babel-watch": "^7.0.0"
},
"dependencies": {
"@babel/core": "^7.7.7",
"@babel/node": "^7.7.7",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.7.7",
"apollo-server-express": "^2.13.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"graphql-playground-middleware-express": "^1.7.14",
"heroku-self-ping": "^2.0.1",
"node-fetch": "^2.6.1",
"scrape-it": "^5.2.3"
}
}