-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.1 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
{
"name": "docker-node-app",
"version": "2.0.40",
"description": "Node.js on Docker",
"repository": "https://github.com/jonfairbanks/docker-node-app.git",
"main": "index.js",
"scripts": {
"start": "node index.js",
"lint": "./node_modules/eslint/bin/eslint.js .",
"lint-fix": "./node_modules/eslint/bin/eslint.js . --fix",
"test": "clear && jest --detectOpenHandles",
"test-watch": "clear && jest --detectOpenHandles --watchAll"
},
"dependencies": {
"dayjs": "^1.11.7",
"ejs": "^3.1.9",
"express": "^4.18.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint-fix",
"pre-push": "(git-branch-is master && npm version minor || (git-branch-is dev && npm --no-git-tag-version version patch)"
}
},
"license": "MIT",
"devDependencies": {
"eslint": "^8.39.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-spellcheck": "^0.0.20",
"git-branch-is": "^4.0.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"superagent": "^8.0.9",
"supertest": "^6.3.3"
}
}