-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 2.94 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "sagacious-api",
"version": "1.0.0",
"description": "A robust GraphQL+REST API template",
"main": "index.js",
"scripts": {
"dev": "node ./node_modules/nodemon/bin/nodemon.js --ignore __tests__ -L -r esm ./src/index.js",
"debug": "node ./node_modules/nodemon/bin/nodemon.js --ignore docs/ --ignore __tests__/ --inspect=0.0.0.0:9229 -L -r esm ./src/index.js ",
"prod": "node -r esm ./src/index.js",
"test": "jest",
"test:docker": "docker-compose run api npx test",
"testdev": "node ./node_modules/tape/bin/tape __tests__/**/*.js | faucet",
"lint": "node ./node_modules/eslint/bin/eslint.js --ext .js ./src",
"gqldocs": "node -r esm ./src/utils/generateDocs.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/poisonborz/sagacious-api.git"
},
"nodemonConfig": {
"ignore": [
"test/*",
"docs/*"
]
},
"resolutions": {
"fs-capacitor": "6.2.0",
"graphql-upload": "11.0.0",
"apollo-upload-client": "14.1.3"
},
"keywords": [],
"private": true,
"author": "poisonborz <[email protected]>",
"dependencies": {
"@babel/register": "^7.9.0",
"@graphidocs/docs": "^1.0.2",
"apollo-server-express": "^2.19.0",
"aws-sdk": "^2.384.0",
"axios": "^0.18.1",
"babel-eslint": "^10.0.1",
"bcryptjs": "^2.4.3",
"chalk": "^2.4.1",
"cors": "^2.8.5",
"csv-parse": "^4.14.1",
"dataloader": "^1.4.0",
"dotenv": "6.0.0",
"ejs": "^2.7.1",
"eslint": "^5.9.0",
"winston": "^3.3.3",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"esm": "^3.1.0",
"express": "^4.16.3",
"express-jwt": "^5.3.1",
"fs-extra": "^7.0.1",
"graphql": "14.0.2",
"graphql-import": "0.7.1",
"graphql-tools": "^5.0.0",
"hashids": "^1.2.2",
"helmet": "^3.13.0",
"jsonpath": "^1.0.2",
"jsonwebtoken": "^8.4.0",
"lodash": "^4.17.15",
"merge": "1.2.1",
"moment-timezone": "^0.5.23",
"morgan": "1.9.1",
"multiparty": "^4.2.1",
"mysql2": "^2.0.0",
"node-cron": "^2.0.3",
"node-excel-export": "^1.4.4",
"nodemailer": "^6.3.0",
"promises-all": "^1.0.0",
"qs": "^6.6.0",
"sequelize": "^5.21.2",
"sharp": "^0.26.2",
"shorthash": "^0.0.2",
"shortid": "^2.2.14",
"squirrelly": "^7.9.1",
"universal-analytics": "^0.4.23",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"babel-jest": "^26.0.1",
"eslint-plugin-jest": "^24.1.0",
"faucet": "0.0.1",
"graphql-codegen-core": "^0.18.2",
"jest": "^26.6",
"jest-cli": "^26.6",
"nodemon": "^2.0.2",
"tap-diff": "0.1.1",
"tape": "4.9.1",
"tldrlegal": "^1.0.11"
},
"directories": {
"test": "__tests__"
},
"license": "UNLICENSED"
}