-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.69 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
57
58
59
{
"name": "boilerplate-nodejs-backend",
"version": "0.0.1",
"description": "Apollo GraphQL",
"main": "server.js",
"directories": {
"doc": "docs",
"lib": "lib",
"test": "tests"
},
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test": "mocha './tests/*.spec.js'",
"test-server": "TEST_DATABASE=mytestdatabase npm run dev",
"db_drop": "dropdb -p 5432 -h localhost -U root -i -e boilerplate",
"db_create": "createdb -p 5432 -h localhost -U root -e boilerplate",
"db_dump": "psql -h localhost -p 5432 -U root -e boilerplate < ./app/db/dump.sql",
"db_faker": "node ./app/db/faker.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Densz/boilerplate-nodejs-backend.git"
},
"author": "Denis Zheng",
"license": "ISC",
"bugs": {
"url": "https://github.com/Densz/boilerplate-nodejs-backend/issues"
},
"homepage": "https://github.com/Densz/boilerplate-nodejs-backend#readme",
"devDependencies": {
"axios": "^0.18.0",
"chai": "^4.2.0",
"eslint": "^5.6.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.14.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.4"
},
"dependencies": {
"apollo-server": "^2.1.0",
"apollo-server-express": "^2.1.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"dataloader": "^1.4.0",
"express": "^4.16.3",
"faker": "^4.1.0",
"graphql": "^14.0.2",
"graphql-iso-date": "^3.6.1",
"graphql-resolvers": "^0.3.2",
"jsonwebtoken": "^8.4.0",
"pg": "^7.5.0",
"pg-hstore": "^2.3.2",
"sequelize": "^4.39.0",
"uuid": "^3.3.2"
}
}