-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.36 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": "design-porfolio",
"version": "0.1.0",
"private": true,
"dependencies": {
"commitlint": "^14.1.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-router": "5.2.1",
"react-router-dom": "5.3.0",
"react-scripts": "4.0.3",
"web-vitals": "1.1.2"
},
"devDependencies": {
"@chimericdream/eslint-config": "6.1.0",
"@chimericdream/eslint-config-import": "1.0.2",
"@chimericdream/eslint-config-jest": "4.0.1",
"@chimericdream/eslint-config-jsx-a11y": "4.0.1",
"@chimericdream/eslint-config-react": "4.1.0",
"@chimericdream/eslint-config-react-hooks": "2.0.1",
"@chimericdream/eslint-config-typescript": "5.1.0",
"@chimericdream/stylelint": "3.0.3",
"@commitlint/config-conventional": "13.2.0",
"@testing-library/jest-dom": "5.14.1",
"@testing-library/react": "12.1.2",
"@testing-library/user-event": "13.5.0",
"@types/jest": "27.0.2",
"@types/node": "16.11.6",
"@types/react": "17.0.33",
"@types/react-dom": "17.0.10",
"@types/react-router": "5.1.17",
"@types/react-router-dom": "5.3.2",
"commitizen": "4.2.4",
"cz-conventional-changelog": "3.3.0",
"eslint": "7.32.0",
"husky": "7.0.4",
"npm-run-all": "4.1.5",
"pinst": "2.1.6",
"standard-version": "9.3.2",
"stylelint": "^11.0.0",
"typescript": "^4.4.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "stylelint src/*.{css,scss,sass}",
"postinstall": "husky install",
"postpublish": "pinst --enable",
"prepublishOnly": "pinst --disable && npm run build",
"release": "cross-env HUSKY=0 standard-version",
"release:alpha": "cross-env HUSKY=0 standard-version --prerelease alpha",
"release:beta": "cross-env HUSKY=0 standard-version --prerelease beta",
"release:rc": "cross-env HUSKY=0 standard-version --prerelease rc",
"type-check": "tsc"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}