-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 3.88 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
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
{
"name": "@cohstats/coh-stats-components",
"version": "0.0.10",
"description": "Coh stats react components",
"types": "./dist/cjs/declarations/index.d.ts",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"exports": {
".": {
"require": "./dist/cjs/index.js",
"default": "./dist/esm/index.js"
}
},
"scripts": {
"nojekyll": "esno scripts/nojekyll",
"storybook": "cross-env NODE_OPTIONS=--openssl-legacy-provider start-storybook -p 7534 -c .config/.storybook",
"typecheck": "tsc --noEmit",
"lint": "eslint src --cache",
"jest": "jest",
"prettier:test": "prettier --check \"**/*.{ts,tsx}\"",
"prettier:write": "prettier --write \"**/*.{ts,tsx}\"",
"test": "npm run typecheck && npm run lint && npm run prettier:test && npm run jest && npm run build",
"build": "rollup --config .config/rollup.config.js",
"release:patch": "npm test && npm run build && esno scripts/release patch",
"release:minor": "npm test && npm run build && esno scripts/release minor",
"release:major": "npm test && npm run build && esno scripts/release major",
"deploy": "npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/cohstats/coh-stats-components.git"
},
"keywords": [
"mantine",
"extension"
],
"author": "Johannes Merkt",
"license": "MIT",
"homepage": "https://github.com/cohstats/coh-stats-components#readme",
"peerDependencies": {
"@emotion/react": ">=11.10.0",
"@mantine/core": ">=5.0.0",
"@mantine/hooks": ">=5.0.0"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.18.9",
"@emotion/react": "^11.10.6",
"@mantine/core": "^6.0.0",
"@mantine/ds": "^6.0.0",
"@mantine/hooks": "^6.0.0",
"@mantine/prism": "^6.0.0",
"@mantine/styles": "^6.0.0",
"@rollup/plugin-alias": "^3.1.2",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-replace": "^2.4.2",
"@rollup/plugin-typescript": "^10.0.1",
"@storybook/builder-webpack4": "^6.5.9",
"@storybook/manager-webpack4": "^6.5.9",
"@storybook/react": "^6.5.9",
"@tabler/icons": "^1.117.0",
"@testing-library/dom": "^8.16.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.3.0",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^28.1.6",
"@types/node": "^18.0.6",
"@types/react": "^18.0.15",
"@types/signale": "^1.4.4",
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"babel-loader": "^8.2.5",
"cross-env": "^7.0.3",
"esbuild": "^0.14.49",
"eslint": "^8.18.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-mantine": "2.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.6.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^5.5.1",
"esno": "^0.16.3",
"execa": "^6.1.0",
"fs-extra": "^10.1.0",
"gh-pages": "^4.0.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"new-github-release-url": "^2.0.0",
"open": "^8.4.0",
"pre-commit": "^1.2.2",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-docgen-typescript": "^2.2.2",
"react-dom": "^18.2.0",
"rimraf": "^3.0.2",
"rollup": "^2.77.0",
"rollup-plugin-esbuild": "^4.2.3",
"rollup-plugin-node-externals": "^2.2.0",
"signale": "^1.4.0",
"simple-git": "^3.10.0",
"storybook-dark-mode": "^1.1.0",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4",
"yargs": "^17.5.1"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/@cohstats"
},
"pre-commit": [
"build"
]
}