-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.88 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
{
"name": "life-after-hate",
"version": "1.0.0",
"description": "Package with the development tools for LAH (such as Prettier and Husky). Please see the individual frontend and backend sub-packages for the actual dependencies.",
"main": "index.js",
"dependencies": {
"@cypress/code-coverage": "^3.9.5",
"@cypress/commit-info": "^2.2.0",
"chai": "^4.3.4",
"colors": "^1.4.0",
"commander": "^7.2.0",
"express-session": "^1.17.1",
"find-up": "^5.0.0",
"istanbul-lib-coverage": "^3.0.0",
"joi-objectid": "^3.0.1",
"mocha": "^8.3.2",
"node-fetch": "^2.6.1",
"nyc": "^15.1.0",
"sinon": "^10.0.1"
},
"devDependencies": {
"@hack4impact-uiuc/eslint-plugin": "^2.0.10",
"@typescript-eslint/parser": "^4.33.0",
"cypress": "^5.6.0",
"eslint": "^7.25.0",
"eslint-plugin-cypress": "^2.11.2",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"typescript": "^4.2.4"
},
"scripts": {
"prettier": "prettier --write '{frontend/**/*.{js,jsx,css,scss,json,md},backend/**/*.{js,css,json,md}}'",
"prettier-check": "prettier --check '{frontend/**/*.{js,jsx,css,scss,json,md},backend/**/*.{js,css,json,md}}'",
"lint": "eslint '{frontend/**/*.{js,jsx},backend/**/*.{js,jsx}}'",
"lint:fe": "eslint 'frontend/**/*.{js,jsx}'",
"lint:be": "eslint 'backend/**/*.{js,jsx}'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hack4impact-uiuc/life-after-hate.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/hack4impact-uiuc/life-after-hate/issues"
},
"homepage": "https://github.com/hack4impact-uiuc/life-after-hate#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,scss,json,md,jsx}": [
"prettier --write"
],
"*.{js,jsx}": [
"eslint --fix"
]
}
}