-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.55 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
{
"name": "github-users-cmode01",
"private": true,
"homepage": "https://github.com/jhnemogap/github-users-cmode01#readme",
"author": {
"name" : "Jorge Humberto Nemoga Pinzon",
"email" : "jhnemogap@gmail.com",
"url" : "https://www.linkedin.com/in/jhnemogap/"
},
"repository": {
"type": "git",
"url": "https://github.com/jhnemogap/github-users-cmode01"
},
"scripts": {
"commit": "git cz",
"clean": "rm -rf .next/",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write 'src/**/*.{js,jsx,ts,tsx,json,css,scss,md}'",
"prepare": "yarn husky:prepare",
"husky:prepare": "sh scripts/husky/prepare.sh"
},
"dependencies": {
"next": "12.0.8",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@commitlint/cli": "16.1.0",
"@commitlint/config-conventional": "16.0.0",
"@commitlint/cz-commitlint": "16.1.0",
"@types/node": "17.0.10",
"@types/react": "17.0.38",
"commitizen": "4.2.4",
"eslint": "8.7.0",
"eslint-config-next": "12.0.8",
"husky": "7.0.4",
"lint-staged": "12.2.2",
"prettier": "2.5.1",
"sass": "1.49.0",
"typescript": "4.5.5"
},
"config": {
"commitizen": {
"path": "./node_modules/@commitlint/cz-commitlint"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"yarn format"
]
},
"browserslist": [
">0.3%",
"not ie 11",
"not dead",
"not op_mini all"
],
"engines": {
"node": ">=14.0.0"
}
}