forked from ironhee/graphql-server-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.12 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.12 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
{
"name": "graphql-server-example",
"version": "1.0.0",
"description": "Example implementaion of GraphQL Server",
"scripts": {
"test": "$(npm bin)/mocha $npm_package_options_mocha",
"test-watch": "$(npm bin)/mocha $npm_package_options_mocha --watch",
"server": "$(npm bin)/babel-node server/server.js",
"server-watch": "$(npm bin)/nodemon -e js --exec npm run server"
},
"options": {
"mocha": "--stage 0 --compilers js:babel/register server/**/__tests__/**/*.js"
},
"author": "Ironhee",
"license": "MIT",
"devDependencies": {
"babel": "^5.8.29",
"babel-eslint": "^4.1.3",
"chai": "^3.4.0",
"eslint": "^1.7.2",
"eslint-config-airbnb": "^0.1.0",
"eslint-plugin-react": "^3.6.3",
"mocha": "^2.3.3",
"nodemon": "^1.8.0",
"sinon": "^1.17.2"
},
"dependencies": {
"dotenv": "^1.2.0",
"express": "^4.13.3",
"express-graphql": "^0.4.0",
"graphql-relay": "^0.3.3",
"jwt-simple": "^0.3.1",
"lodash": "^3.10.1",
"lowdb": "^0.10.2",
"node-uuid": "^1.4.3",
"rethinkdb": "^2.1.1",
"thinky": "^2.1.9",
"underscore-db": "^0.9.1"
}
}