-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.33 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
{
"name": "issue-tracker",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:amirsaeed671/issue-tracker.git",
"author": "Amir Ali <[email protected]>",
"engines": {
"node": ">=13",
"yarn": ">=1.2"
},
"scripts": {
"start": "node -r dotenv/config ./src/app.js",
"dev": "nodemon -r dotenv/config ./src/app.js",
"format": "prettier --write \"src/**/*.{js,jsx}\"",
"test": "jest",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage",
"lint": "jest --config ./test/jest.config.lint.js"
},
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^3.23.3",
"mongoose": "^5.9.23"
},
"devDependencies": {
"axios": "^0.19.2",
"eslint": "^7.4.0",
"eslint-config-kentcdodds": "^14.14.1",
"husky": "^4.2.5",
"jest": "^26.1.0",
"jest-runner-eslint": "^0.10.0",
"jest-watch-select-projects": "^2.0.0",
"jest-watch-typeahead": "^0.6.0",
"lint-staged": "^10.2.11",
"nodemon": "^2.0.4",
"prettier": "^2.0.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"yarn run test:coverage",
"yarn run format",
"jest --findRelatedTests"
]
}
}