-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 2.28 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
{
"name": "@thewca/wca-components",
"version": "0.6.0",
"description": "The WCA React Component Library",
"repository": {
"type": "git",
"url": "git+https://github.com/thewca/wca-components.git"
},
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"author": "WCA Software Team",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/thewca/wca-components/issues"
},
"homepage": "https://github.com/thewca/wca-components/README.md",
"scripts": {
"build": "node build.js && tsc --emitDeclarationOnly --outDir dist",
"prepublishOnly": "npm run build",
"test": "jest",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint src --ext .js,.jsx,.ts,.tsx --fix",
"prettier": "prettier src --check",
"prettier:fix": "prettier src -w",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"peerDependencies": {
"@types/react": "^17.0.0 || ^18.0.0",
"@types/react-dom": "^17.0.0 || ^18.0.0",
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0",
"react-router-dom": ">=6.3.0",
"fomantic-ui-css": "^2.9.2",
"semantic-ui-react": "^2.1.4",
"@wca/helpers": "^1.1.4"
},
"devDependencies": {
"@babel/preset-env": "^7.22.4",
"@babel/preset-react": "^7.22.3",
"@babel/preset-typescript": "^7.21.5",
"@storybook/addon-essentials": "^7.0.18",
"@storybook/addon-interactions": "^7.0.18",
"@storybook/addon-links": "^7.0.18",
"@storybook/addon-styling": "^1.0.8",
"@storybook/blocks": "^7.0.18",
"@storybook/react": "^7.0.18",
"@storybook/react-webpack5": "^7.0.18",
"@storybook/testing-library": "^0.0.14-next.2",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.1",
"@wca/helpers": "^1.1.4",
"babel-jest": "^29.5.0",
"esbuild": "^0.17.19",
"esbuild-node-externals": "^1.7.0",
"esbuild-sass-plugin": "^2.9.0",
"eslint-kit": "^9.1.0",
"glob": "^10.3.10",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"prop-types": "^15.8.1",
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0",
"sass": "^1.62.1",
"storybook": "^7.0.18",
"typescript": "^4.5.4"
},
"types": "dist/components/index.d.ts"
}