-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.08 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.08 KB
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
38
39
40
41
42
{
"name": "fullstack_boilerplate",
"version": "1.0.0",
"description": "web app starter",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "babel-node src/server.js",
"dev": "NODE_ENV=development nodemon ./src/server.js --exec babel-node",
"lint": "eslint src/ --quiet",
"build": "babel ./src/ -d build"
},
"keywords": [
"node",
"graphql",
"react"
],
"author": "Ben Chachaj",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/node": "^7.6.1",
"eslint": "^6.4.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-standard": "^4.0.1",
"morgan": "^1.9.1",
"nodemon": "^1.19.2"
},
"dependencies": {
"@babel/preset-env": "^7.6.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"graphql": "^14.5.7",
"helmet": "^3.21.1"
}
}