-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.53 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 3.53 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "character-generator",
"version": "1.2.0",
"private": true,
"packageManager": "pnpm@8.12.0",
"dependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"downloadjs": "^1.4.7",
"html-to-image": "^1.11.11",
"jspdf": "^3.0.3",
"openai": "^6.2.0",
"prop-types": "^15.7.2",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-icons": "^4.1.0",
"react-scripts": "^5.0.1",
"typescript": "^4.9.5"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"resolutions": {
"lodash.template": "^4.5.0",
"mixin-deep": "^1.3.2",
"set-value": "^2.0.1",
"object-path": "^0.11.5"
},
"scripts": {
"commit": "git-cz",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "CI=true react-scripts test",
"eject": "react-scripts eject",
"test:coverage": "jest ---collect-coverage",
"test:badge": "pnpm test:coverage && make-coverage-badge",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/eslint-parser": "^7.23.3",
"@babel/plugin-transform-modules-commonjs": "^7.23.3",
"@babel/preset-react": "^7.23.3",
"@testing-library/jest-dom": "^4.2.0",
"@testing-library/react": "^9.3.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^29.7.0",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^8.1.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-babel": "^9.0.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"fakerator": "^0.3.0",
"husky": "^8.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"make-coverage-badge": "^1.2.0",
"prettier": "^2.1.2",
"standard-version": "^9.0.0",
"ts-jest": "^29.1.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/d48/character-generator.git"
},
"pnpm": {
"overrides": {
"node-notifier@<8.0.1": ">=8.0.1",
"node-forge@<1.0.0": ">=1.0.0",
"node-forge@<1.3.0": ">=1.3.0",
"react-dev-utils@>=0.4.0 <11.0.4": ">=11.0.4",
"jsdom@<=16.4.0": ">=16.5.0",
"immer@<9.0.6": ">=9.0.6",
"postcss@>=7.0.0 <7.0.36": ">=7.0.36",
"browserslist@>=4.0.0 <4.16.5": ">=4.16.5",
"postcss@<7.0.36": ">=7.0.36",
"immer@<8.0.1": ">=8.0.1",
"loader-utils@>=1.0.0 <1.4.2": ">=1.4.2",
"loader-utils@<1.4.1": ">=1.4.1",
"postcss@<8.4.31": ">=8.4.31",
"semver@>=6.0.0 <6.3.1": ">=6.3.1",
"semver@>=7.0.0 <7.5.2": ">=7.5.2",
"ansi-html@<0.0.8": ">=0.0.8",
"glob-parent@<5.1.2": ">=5.1.2",
"minimatch@<3.0.5": ">=3.0.5",
"tough-cookie@<4.1.3": ">=4.1.3",
"shell-quote@<=1.7.2": ">=1.7.3",
"nth-check@<2.0.1": ">=2.0.1"
}
}
}