-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
93 lines (93 loc) · 2.42 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
{
"name": "swarm-sync",
"version": "0.1.66",
"description": "GitOps for Docker Swarm",
"main": "src/index.js",
"repository": "[email protected]:1dayio/microservice-reservations.git",
"author": "Kevin Bennett <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=10.4"
},
"scripts": {
"start": "node src/index.js",
"dev": "nodemon --exec node src/index.js",
"precommit": "yarn run lint",
"lint": "eslint src/**",
"prettier": "prettier --write"
},
"dependencies": {
"apollo-errors": "^1.9.0",
"apollo-server-express": "^1.3.6",
"body-parser": "^1.18.3",
"commander": "^2.19.0",
"compare-versions": "^3.4.0",
"config": "^3.0.1",
"deep-extend": "^0.6.0",
"docker-registry-client": "^3.3.0",
"dockerode": "^2.5.8",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"fs-extra": "^7.0.1",
"getenv": "^0.7.0",
"graphql": "^0.13.2",
"graphql-tools": "^3.0.2",
"helmet": "^3.12.1",
"js-yaml": "^3.13.0",
"lodash": "^4.17.10",
"lodash-id": "^0.14.0",
"lowdb": "^1.0.0",
"minimatch": "^3.0.4",
"mongoose": "^5.1.5",
"node-cache": "^4.2.0",
"object-hash": "^1.3.1",
"p-iteration": "^1.1.7",
"project-version": "^1.0.0",
"request": "^2.87.0",
"request-promise": "^4.2.2",
"request-promise-native": "^1.0.5",
"semver": "^5.6.0",
"shelljs": "^0.8.3",
"simple-git": "^1.107.0",
"swarm-pack": "https://github.com/swarm-pack/swarm-pack.git",
"tmp": "^0.0.33",
"utf8": "^3.0.0",
"winston": "2.4.3",
"winston-papertrail": "^1.0.5"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.51",
"@babel/core": "^7.0.0-beta.51",
"@babel/node": "^7.0.0-beta.51",
"@babel/preset-env": "^7.0.0-beta.51",
"@babel/register": "^7.0.0-beta.51",
"chai": "^4.1.2",
"cross-env": "^5.1.6",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-prettier": "^3.0.1",
"mocha": "^5.2.0",
"nodemon": "^1.17.5",
"prettier": "^1.16.4",
"rimraf": "^2.6.2",
"husky": "^1.3.1",
"lint-staged": "^8.1.5"
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"eslint --fix",
"git add"
],
"src/**/*.{json,md,scss,yaml,yml}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}