-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.62 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
{
"name": "sapphire",
"version": "1.0.0",
"description": "Bridge for diamond and emerald",
"main": "src/main.js",
"repository": "https://github.com/myriadeinc/sapphire.git",
"author": "Myriade Inc.",
"scripts": {
"start:dev": "nodemon --inspect=0.0.0.0:9870 -L --ignore test src/main.js",
"start": "node src/main.js",
"test": "mocha --color --timeout 10000 --exit --recursive 'test'",
"lint": "eslint --fix src",
"migration:up": "node scripts/migration.up.js",
"migration:generate": "node scripts/generate.migration.js"
},
"license": "MIT",
"dependencies": {
"amqplib": "^0.5.6",
"apollo-server": "^2.19.0",
"apollo-server-express": "^2.19.0",
"app-module-path": "^2.2.0",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"bunyan": "^1.8.14",
"bunyan-formatter": "^1.0.0",
"egads": "^1.0.2",
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"express-validator": "^6.6.1",
"faker": "^4.1.0",
"gelf-stream": "^1.1.1",
"graphql": "^14.7.0",
"graphql-tools": "^4.0.8",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.20",
"logdna-bunyan": "^1.3.2",
"nconf": "^0.10.0",
"node-rsa": "^1.1.1",
"path": "^0.12.7",
"pg": "^7.18.2",
"prom-client": "^13.1.0",
"promise-redis": "0.0.5",
"redis": "^2.8.0",
"sequelize": "^5.22.3",
"sinon": "^9.2.3",
"umzug": "^2.3.0",
"uuid": "^3.4.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-string": "^1.5.0",
"eslint": "^6.8.0",
"eslint-config-google": "^0.13.0",
"mocha": "^6.2.3",
"nodemon": "^2.0.7"
}
}