-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 2.65 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
105
{
"name": "users-cubed",
"version": "1.0.0",
"description": "",
"main": "start.js",
"scripts": {
"test": "mocha tests/",
"lint": "eslint --debug .",
"lint:write": "eslint --debug . --fix",
"start": "cross-env NODE_ENV=production node start.js",
"debug": "cross-env NODE_DEBUG=APP node start.js",
"upgrade:list": "ncu",
"upgrade:install": "ncu -u"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TalaikisInc/users-cubed.git"
},
"author": "Tadas Talaikis <[email protected]>",
"license": "GPL-v3",
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/polyfill": "^7.7.0",
"@babel/preset-env": "^7.7.1",
"@babel/register": "^7.7.0",
"@commitlint/config-conventional": "^8.2.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"commitlint": "^8.2.0",
"cross-env": "^6.0.3",
"eslint": "^6.6.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^4.0.1",
"git-precommit-checks": "^3.0.0",
"husky": "^3.1.0",
"lint-staged": "^9.4.3",
"lodash": "^4.17.15",
"mocha": "^6.2.2",
"npm-check-updates": "^3.2.1",
"supertest": "^4.0.2"
},
"dependencies": {
"async-optics": "^1.1.0",
"aws-amplify": "^2.1.0",
"dotenv": "^8.2.0",
"eslint-plugin-perf-standard": "^1.0.3",
"faker": "^4.1.0",
"frenchkiss": "0.2.1",
"graphql": "^14.5.8",
"isemail": "^3.2.0",
"legit": "^1.0.7",
"morgan": "^1.9.1",
"passport": "^0.4.0",
"passport-facebook": "^3.0.0",
"passport-google-oauth2": "^0.2.0",
"passport-twitter": "^1.0.4",
"rotating-file-stream": "^1.4.6",
"yup": "^0.27.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css}": [
"git-precommit-checks",
"git add"
]
},
"git-precommit-checks": {
"rules": [
{
"filter": "\\.js$",
"nonBlocking": "true",
"message": "You’ve got leftover `console.log`",
"regex": "console\\.log"
},
{
"message": "You’ve got leftover conflict markers",
"regex": "/^[<>|=]{4,}/m"
},
{
"message": "You have unfinished work",
"nonBlocking": "true",
"regex": "(?:FIXME|TODO)"
}
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}