-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.3 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
{
"name": "ocurl",
"version": "1.0.0",
"description": "One click URL shortener",
"main": "index.js",
"repository": "https://github.com/nigel5/ocurl.git",
"author": "nigel5",
"license": "private",
"private": true,
"dependencies": {
"@google-cloud/logging-winston": "^4.0.1",
"cassandra-driver": "^4.6.0",
"debug": "^4.3.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^4.2.0",
"pg": "^8.5.1",
"redis": "^3.0.2",
"winston": "^3.3.3"
},
"scripts": {
"lint:check": "prettier . --check",
"lint:run": "prettier . --write --ignore-unknown",
"dev": "DEBUG=middleware:*,app:* nodemon ./main.js | ./node_modules/.bin/pino-pretty",
"start": "NODE_ENV=production DEBUG=middleware:*,app:* node main.js"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"husky": "^4.3.0",
"lint-staged": "^10.5.0",
"nodemon": "^2.0.6",
"pino-pretty": "^4.3.0",
"prettier": "2.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"singleQuote": true
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}