-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.42 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "recruiter-tech",
"description": "Diversity Recruitment Platform",
"version": "0.1.13",
"homepage": "https://recruiter.tech/open-source",
"license": "Apache-2.0",
"private": true,
"engines": {
"node": "14"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"release:patch": "standard-version --release-as patch",
"release:minor": "standard-version --release-as minor",
"release:major": "standard-version --release-as major",
"publish": "git push --follow-tags origin main",
"commit": "cz",
"lint": "eslint --ext js,jsx --quiet",
"lint:fix": "eslint --fix --ext .js,.jsx,.ts,.tsx .",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"dependencies": {
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"next": "^11.1.1",
"next-auth": "^3.4.2",
"next-secure-headers": "^2.2.0",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-helmet": "^6.1.0"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/next-auth": "^3.1.24",
"@types/node": "^14.14.26",
"@types/react": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"all-contributors-cli": "^6.19.0",
"babel-plugin-module-resolver": "^4.1.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.19.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^7.2.0",
"eslint-import-resolver-babel-module": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^5.0.9",
"prettier": "2.2.1",
"standard-version": "^9.1.0",
"typescript": "^4.1.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"contributors": [
{
"name": "Guilherme Santos",
"email": "[email protected]",
"url": "http://recruiter.tech/contributors"
}
]
}