This repository has been archived by the owner on Feb 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.06 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "badger-brain",
"version": "0.0.1",
"description": "GraphQL server app",
"main": "index.js",
"scripts": {
"start": "nodemon lib/index.js --exec babel-node",
"build": "babel lib -d dist",
"lint": "eslint lib/ prismic-backup-service/",
"serve": "node dist/index.js",
"test": "mocha",
"test-watch": "mocha --watch --reporter min",
"commit": "commit-wizard",
"test-with-coverage": "istanbul cover ./node_modules/.bin/_mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/redbadger/badger-brain.git"
},
"keywords": [
"GraphQL"
],
"author": "Red Badger",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/redbadger/badger-brain/issues"
},
"homepage": "https://github.com/redbadger/badger-brain#readme",
"dependencies": {
"babel-polyfill": "^6.9.1",
"colors": "^1.2.1",
"date-fns": "^1.3.0",
"dotenv": "^7.0.0",
"express": "^4.16.3",
"express-graphql": "^0.5.3",
"express-prismic": "^1.1.1",
"graphql": "^0.6.0",
"lodash": "^4.17.19",
"moment": "^2.29.1",
"newrelic": "^7.1.1",
"node-fetch": "^2.6.1",
"prismic.io": "^3.0.0",
"ramda": "^0.21.0",
"sanitize-html": "^1.21.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.2",
"babel-eslint": "^10.1.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"coveralls": "^3.0.0",
"deep-freeze": "0.0.1",
"eslint": ">=4.18.2",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.8.1",
"handlebars": "^4.7.6",
"injectr": "^0.5.1",
"istanbul": "^1.0.0-alpha.2",
"mocha": "^5.2.0",
"mocha-trumpet-reporter": "0.0.3",
"nock": "^9.2.5",
"nodemon": "^1.18.5",
"pre-git": "^3.17.1",
"sinon": "^1.17.4",
"supertest": "^3.3.0"
},
"config": {
"pre-git": {
"pre-commit": [
"npm run lint",
"npm t"
]
}
},
"release": {
"analyzeCommits": "simple-commit-message"
}
}