-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.17 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.17 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
{
"name": "@code4rena/components-library",
"version": "4.6.2",
"description": "Code4rena's official components library ",
"types": "./dist/lib.d.ts",
"exports": {
".": "./dist/lib.mjs",
"./types": "./dist/types.mjs",
"./styles": "./dist/style.css"
},
"typesVersions": {
"*": {
"types": [
"./dist/types.d.ts"
]
}
},
"files": [
"/dist"
],
"scripts": {
"build": "vite build && tsc",
"test": "jest",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"keywords": [
"Code4rena",
"C4",
"Components",
"Library",
"UI"
],
"author": "Code4rena",
"license": "ISC",
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@storybook/addon-essentials": "^7.0.26",
"@storybook/addon-interactions": "^7.0.26",
"@storybook/addon-links": "^7.0.26",
"@storybook/addon-styling": "^1.3.2",
"@storybook/blocks": "^7.6.7",
"@storybook/preview-api": "^7.2.0",
"@storybook/react": "^7.0.26",
"@storybook/react-webpack5": "^7.0.26",
"@storybook/testing-library": "^0.0.14-next.2",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.3",
"@types/luxon": "^3.3.1",
"@types/react": "^18.2.14",
"babel-jest": "^29.6.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"jest-transformer-svg": "^2.0.1",
"sass": "^1.69.5",
"storybook": "^7.0.26",
"ts-node": "^10.9.1",
"tslib": "^2.6.0",
"typescript": "^5.1.6",
"vite": "^4.4.8",
"vite-plugin-dts": "^3.5.1"
},
"dependencies": {
"clsx": "^1.2.1",
"container-query-polyfill": "^1.0.2",
"date-fns": "^2.30.0",
"luxon": "^3.3.0",
"react-select": "^5.7.4"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-typescript",
"@babel/preset-react"
]
}
}