-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.54 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
{
"name": "node-alb-scaffold",
"version": "2.0.0",
"main": "index.js",
"private": true,
"scripts": {
"test": "jest --detectOpenHandles",
"lint": "npx eslint .",
"db:migrate": "npx knex migrate:latest",
"db:migrate:rollback": "npx knex migrate:rollback"
},
"repository": {
"type": "git",
"url": "git+https://github.com/casamagalhaes/node-alb-scaffold.git"
},
"jest": {
"testEnvironment": "node"
},
"keywords": [
"node",
"alb",
"scaffold"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/casamagalhaes/node-alb-scaffold/issues"
},
"homepage": "https://github.com/casamagalhaes/node-alb-scaffold#readme",
"devDependencies": {
"@types/jest": "^24.0.23",
"eslint": "^6.7.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"faker": "^4.1.0",
"gulp": "^4.0.2",
"gulp-clean": "^0.4.0",
"gulp-install": "^1.1.0",
"gulp-shell": "^0.7.1",
"gulp-zip": "^5.0.1",
"husky": "^3.1.0",
"jest": "^24.9.0",
"sequelize-cli": "^5.5.1"
},
"dependencies": {
"aws-sdk": "^2.580.0",
"axios": "^0.19.0",
"debug": "^4.1.1",
"jsonwebtoken": "^8.5.1",
"jwk-to-pem": "^2.0.3",
"knex": "^0.21.2",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"moment-timezone": "^0.5.27",
"mysql": "^2.18.1",
"mysql2": "^2.1.0",
"pako": "^1.0.10",
"umzug": "^2.3.0",
"uuid": "^8.3.2",
"validator": "^13.1.1",
"yup": "^0.29.1"
},
"engines": {
"node": ">= 12"
}
}