-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1.14 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
{
"name": "unique-recruitment-system",
"version": "3.0.2",
"description": "A management system for recruitment of Unique Studio",
"author": "Unique Web",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/UniqueStudio/UniqueRecruitmentSystem.git"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "2.21.2",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-react": "^7.24.0",
"husky": "^7.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0",
"typescript": "^4.3.2"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"eslint --cache --fix",
"prettier --write"
],
"**/*.{html,css,scss,json,yml,yaml}": [
"prettier --write"
]
},
"scripts": {
"postinstall": "husky install",
"format": "prettier --write . '!**/*.md'",
"lint": "eslint --fix .",
"build:essentials": "./scripts/build-essentials.sh"
}
}