-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.81 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.81 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
{
"name": "gamification-platform-backend",
"version": "0.0.1",
"description": "GAMIFICATION PLATFORM BACKEND",
"author": "Codebrahma Technologies",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Codebrahma/gamification-platform-backend"
},
"main": "index.js",
"engines": {
"node": ">=8.3.0",
"npm": ">=5.3.0",
"yarn": ">=0.27.5"
},
"scripts": {
"start": "nodemon server.js",
"lint": "eslint *.js server test config bin && echo Lint Passed ❤",
"test": "NODE_ENV=test istanbul --include-all-sources cover _mocha -- -u bdd $(find test -name '*.js') && istanbul check-coverage && echo All tests passed 👍",
"test:coverage": "NODE_ENV=test istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && istanbul check-coverage",
"report-coverage": "codeclimate-test-reporter < ./coverage/lcov.info",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"precommit": "yarn lint"
},
"dependencies": {
"apollo-server-express": "false1.3.2",
"axios": "0.16.2",
"babel-eslint": "false8.2.1",
"bcrypt": "false1.0.3",
"bluebird": "3.5.0",
"body-parser": "false1.18.2",
"boom": "5.2.0",
"bunyan": "1.8.12",
"config": "1.26.2",
"cors": "false2.8.4",
"errorhandler": "false1.5.0",
"express": "false4.16.2",
"glob": "7.1.2",
"graphql": "false0.12.3",
"graphql-tools": "false2.19.0",
"hapi": "false17.2.0",
"hapi-swagger": "^9.0.2",
"http-status": "1.0.1",
"inert": "^5.1.0",
"joi": "^10.6.0",
"jsonwebtoken": "false8.1.1",
"lodash": "4.17.4",
"method-override": "false2.3.10",
"mongoose": "^5.0.3",
"newrelic": "2.2.0",
"passport": "false0.4.0",
"passport-jwt": "false3.0.1",
"passport-local": "false1.0.0",
"vision": "^5.3.1"
},
"devDependencies": {
"all-contributors-cli": "false4.10.1",
"chai": "4.1.1",
"codeclimate-test-reporter": "0.5.0",
"commitizen": "^2.9.6",
"coveralls": "false3.0.0",
"cz-customizable": "^5.2.0",
"eslint": "^4.15.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-node": "5.1.1",
"eslint-plugin-promise": "3.5.0",
"eslint-plugin-react": "^7.5.1",
"eslint-plugin-standard": "3.0.1",
"husky": "0.14.3",
"istanbul": "1.1.0-alpha.1",
"mocha": "3.5.0",
"mocha-lcov-reporter": "false1.3.0",
"nock": "9.0.14",
"nodemon": "false1.14.12",
"should": "false13.2.1",
"sinon": "3.2.1",
"sinon-chai": "2.13.0",
"supertest": "false3.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "cz_config.js"
}
}
}