forked from g-loot/react-tournament-brackets
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
97 lines (97 loc) · 3.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@utkzhang/echelon-tournament-brackets",
"version": "1.1.2",
"description": "A react component to visualize bracket leaderboards",
"module": "dist/esm/index.js",
"main": "dist/cjs/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build-cjs": "tsc -p ./tsconfig.node.json && tsc-alias -p ./tsconfig.node.json",
"build-esm": "tsc -p ./tsconfig.browser.json && tsc-alias -p ./tsconfig.browser.json",
"build": "rimraf dist & npm run build-cjs && npm run build-esm",
"create-test-lib": "npm pack",
"test-lib-build": "npm run build && npm run create-test-lib",
"dev": "storybook dev -p 4442",
"start": "storybook dev -p $PORT -h 0.0.0.0",
"build-storybook": "storybook build -o devapp-build",
"test": "jest --verbose false",
"lint": "eslint \"src/**/*.jsx\" \"src/**/*.ts\" \"src/**/*.tsx\"",
"format": "eslint --fix \"src/**/*.jsx\" \"src/**/*.ts\" \"src/**/*.tsx\""
},
"author": "Omar ElGaml",
"license": "ISC",
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-svg-pan-zoom": "^3.12.1",
"styled-components": "^6.1.8"
},
"dependencies": {
"deepmerge": "^4.3.1"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/eslint-parser": "^7.23.10",
"@babel/plugin-transform-runtime": "^7.23.9",
"@babel/preset-typescript": "^7.23.3",
"@storybook/addon-actions": "^7.6.16",
"@storybook/addon-essentials": "^7.6.16",
"@storybook/addon-links": "^7.6.16",
"@storybook/addon-storysource": "^7.6.16",
"@storybook/builder-webpack5": "^7.6.16",
"@storybook/manager-webpack5": "^6.5.16",
"@storybook/react": "^7.6.16",
"@storybook/react-webpack5": "^7.6.16",
"@testing-library/react": "^14.2.1",
"@types/jest": "^29.5.12",
"@types/styled-components": "^5.1.34",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^9.1.3",
"babel-plugin-module-resolver": "^5.0.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^6.10.0",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-testing-library": "^6.2.0",
"eslint-plugin-typescript": "^0.14.0",
"file-loader": "^6.2.0",
"jest": "^29.7.0",
"minireset.css": "^0.0.7",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-docgen-typescript-loader": "^3.7.2",
"react-dom": "^18.2.0",
"react-svg-pan-zoom": "^3.12.1",
"storybook": "^7.6.16",
"style-loader": "^3.3.4",
"styled-components": "^6.1.8",
"ts-loader": "^9.5.1",
"tsc-alias": "^1.8.8",
"typescript": "^5.3.3",
"url-loader": "^4.1.1",
"webpack": "^5.90.2",
"webpack-cli": "^5.1.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UTkzhang/echelon-tournament-brackets.git"
},
"bugs": {
"url": "https://github.com/g-loot/react-tournament-brackets/issues"
},
"homepage": "https://github.com/g-loot/react-tournament-brackets#readme"
}