-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.18 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
{
"name": "config-microservice",
"version": "1.0.0",
"description": "Global Config for RoboDomo (client and microservices)",
"main": "index.js",
"repository": "[email protected]:RoboDomo/config",
"author": "Michael Schwartz <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"start": "./node_modules/.bin/forever --spinSleepTime 1000 index.js"
},
"devDependencies": {
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"lint-staged": "^10.5.2",
"prettier": "^2.2.1"
},
"eslintConfig": {
"extends": [
"react-app",
"plugin:prettier/recommended",
"prettier/babel",
"prettier/react"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run autoformat"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx},!src/models": [
"eslint --fix",
"git add"
],
"src/**/*.{json,scss,sass,less}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"debug": "^4.3.1",
"forever": "^3.0.4",
"microservice-core": "https://github.com/RoboDomo/microservice-core",
"mongodb": "^3.6.3"
}
}