forked from LalitKushwah/IglooServer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.89 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.89 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "igloo-graphql",
"version": "0.1.0",
"description": "Backend for the igloo platform",
"scripts": {
"dev": "nodemon ./server.js --exec babel-node --inspect -e js,graphql,env",
"start": "npm run build && node ./build/server.js",
"build":
"babel server.js app.js s3helpers.js shared.js -d build --source-maps && babel postgresql -d build/postgresql --source-maps && babel graphql -d build/graphql --source-maps",
"setupDatabase": "node ./postgresql/setup.js",
"test": "jest --forceExit --c=jest.config.json",
"pretest": "npm run setupDatabase",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"lint": "prettier-eslint **/*.js --write",
"precommit": "lint-staged",
"bill": "babel-node ./monthlyBilling"
},
"lint-staged": {
"*.js": ["prettier-eslint --write", "git add"],
"*.json": ["prettier-eslint --write", "git add"],
"*.graphql": ["prettier-eslint --write", "git add"]
},
"repository": {
"type": "git",
"url": "https://github.com/hellowitlab/iglooQL"
},
"keywords": [],
"author": "Igloo",
"license": "MIT",
"bugs": {
"url": "https://github.com/hellowitlab/iglooQL/issues"
},
"homepage": "https://github.com/hellowitlab/iglooQL",
"dependencies": {
"apollo-server-express": "^1.0.2",
"aws-sdk": "^2.229.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "6.5.0",
"babel-preset-es2015": "6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "6.5.0",
"babel-runtime": "^6.26.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.17.2",
"chalk": "^2.3.0",
"connect-busboy": "^0.0.2",
"cors": "^2.8.4",
"coveralls": "^3.0.0",
"dotenv": "^4.0.0",
"express": "4.16.0",
"express-jwt": "^5.3.0",
"graphql-subscriptions": "^0.5.5",
"graphql-tools": "^1.0.0",
"graphql-tools-types": "^1.1.12",
"javascript-fortuna": "^1.0.8",
"jwt-simple": "^0.5.1",
"moment": "^2.19.2",
"otp.js": "^1.1.0",
"passport": "^0.4.0",
"pg": "7.4.1",
"pg-hstore": "^2.3.2",
"sequelize": "^4.22.8",
"stripe": "^6.2.1",
"subscriptions-transport-ws": "^0.9.4",
"update-batcher": "^1.0.0",
"uuid": "^3.2.1",
"web-push": "^3.3.0",
"winston": "^3.0.0-rc1",
"winston-slacker": "^1.0.3",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"babel-eslint": "^8.1.2",
"eslint": "4.9.0",
"eslint-config-airbnb": "16.1.0",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-jsx-a11y": "6.0.2",
"eslint-plugin-react": "7.4.0",
"graphql": "^0.11.7",
"graphql-tag": "^2.6.1",
"husky": "^0.14.3",
"jest": "^21.2.1",
"lint-staged": "^6.0.0",
"minimal-graphql": "^1.0.3",
"nodemon": "^1.12.1",
"prettier-eslint-cli": "^4.7.0",
"supertest": "^3.0.0"
},
"peerDependencies": {
"graphql": "^0.11.7"
}
}