-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.68 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "gliobase",
"version": "0.0.1",
"description": "Glioblastoma multiforme (GBM) biomarker knowledge base",
"main": "server.js",
"repository": "https://github.com/thehyve/gliobase.git",
"contrubutor": [
"Jeremy Georges-Filteau <jeremy@thehyve.nl>",
"Xiaoyu Zhang <x.zhang18@imperial.ac.uk>",
"Birbal Prasad <b.prasad@tees.ac.uk>"
],
"license": "MIT",
"dependencies": {
"@babel/node": "^7.2.2",
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"apollo-server-express": "^2.3.1",
"body-parser": "^1.18.3",
"concurrently": "^4.1.0",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"express-graphql": "^0.7.1",
"fuse.js": "^3.3.0",
"graphql": "^14.0.2",
"graphql-import": "^0.7.1",
"graphql-tools": "^4.0.3",
"merge-graphql-schemas": "^1.5.8",
"mongoose": "^5.4.2",
"mongoose-seed": "^0.5.1",
"nodemon": "^1.18.9",
"react": "^16.7.0",
"react-router-dom": "^4.3.1"
},
"devDependencies": {
"@babel/node": "^7.2.2",
"concurrently": "3.1.0",
"eslint-config-airbnb": "14.1.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "4.0.0",
"eslint-plugin-react": "6.9.0"
},
"scripts": {
"start": "concurrently \"npm run server\" \"npm run client\"",
"stop": "kill -9 $(ps aux | grep \"node\" | awk '{print $2}')",
"server": "nodemon --exec babel-node server.js",
"client": "node client/start-client.js",
"dev": "echo \"This command has been deprecated. Use 'npm start'\" && exit 1",
"lint": "eslint .",
"postinstall": "cd client && npm install && npm run build"
},
"engines": {
"node": "8.12.x"
}
}