-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.17 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": "js-in-pipeline",
"version": "1.0.0",
"description": "The \"JS in Pipeline\" article series",
"main": "index.js",
"scripts": {
"dev": "nodemon index.js",
"lint": "eslint --fix .",
"test": "ENVIRONMENT=dev jest --testRegex=tests/unit/.*.test.js$ --coverage"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run lint && npm test"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/jeanycyang/js-in-pipeline.git"
},
"keywords": [
"devops",
"nodejs",
"testing",
"linter",
"docker",
"docker-compose"
],
"author": "Jean Ya-Ching Yang",
"license": "MIT",
"bugs": {
"url": "https://github.com/jeanycyang/js-in-pipeline/issues"
},
"homepage": "https://github.com/jeanycyang/js-in-pipeline#readme",
"dependencies": {
"dotenv": "^8.2.0",
"express": "^4.17.1",
"morgan": "^1.9.1",
"mysql2": "^2.1.0",
"sequelize": "^5.21.5"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.1",
"husky": "^4.2.3",
"jest": "^25.1.0",
"nodemon": "^2.0.2"
}
}