-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.21 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.21 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
{
"name": "quicknode",
"version": "1.0.0",
"description": "QuickNode Framework",
"main": "app.js",
"dependencies": {
"bcrypt": "^5.0.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"connect-ensure-login": "^0.1.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-graphql": "^0.12.0",
"firebase-admin": "^9.1.1",
"graphql": "^15.5.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.20",
"moment": "^2.27.0",
"multer": "^1.4.2",
"mysql2": "^2.1.0",
"nodemailer": "^6.4.11",
"nodemon": "^2.0.4",
"passport": "^0.4.1",
"passport-http-bearer": "^1.0.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"passport-oauth": "^1.0.0",
"pg": "^8.3.3",
"pg-hstore": "^2.3.3",
"rand-token": "^1.0.1",
"sequelize": "^6.3.4",
"sqlite3": "^5.0.0",
"swagger2-postman-generator": "^2.1.5",
"tedious": "^11.0.5",
"uuid": "^8.3.0"
},
"devDependencies": {
"@babel/core": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"cross-env": "^7.0.2",
"eslint": "^7.11.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-formatter-complexity": "^1.0.4",
"eslint-plugin-import": "^2.22.0",
"faker": "^5.1.0",
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"sequelize-cli": "^6.2.0",
"sequelize-erd": "^1.3.1",
"supertest": "^4.0.2"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
},
"scripts": {
"test": "NODE_ENV=test nyc mocha --recursive --exit 'Test/**/*.test.js' && ./node_modules/.bin/eslint --fix --ignore-path .gitignore .",
"start": "node app.js",
"lint": "./node_modules/.bin/eslint --fix --ignore-path .gitignore .",
"erd": "sequelize-erd --source ./erd_generator.js --destination ./erd.svg"
},
"repository": "git+ssh://git@gitlab.com:neonexxa/quicknode.git",
"keywords": [
"quicknode"
],
"author": "Neonexxa",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/neonexxa/quicknode/issues"
},
"homepage": "https://gitlab.com/neonexxa/quicknode#readme"
}