-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.94 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 2.94 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
{
"name": "@make-software/cspr-design",
"version": "2.0.7",
"description": "React-based UI component library powering Casper Blockchain applications",
"homepage": "https://cspr.design",
"repository": "git://github.com/make-software/cspr-design",
"license": "Apache-2.0",
"keywords": [
"casper",
"blockchain",
"react",
"web3"
],
"main": "dist/cspr-design.umd.js",
"module": "dist/cspr-design.es.js",
"types": "dist/lib/index.d.ts",
"type": "module",
"exports": {
".": {
"import": "./dist/cspr-design.es.js",
"require": "./dist/cspr-design.umd.js"
}
},
"scripts": {
"build:dist": "npm run reexport-icons && vite build && npm run copy-assets-vite",
"copy-assets-vite": "shx cp -r src/lib/assets/ dist/",
"reexport-icons": "node src/generate-icons.cjs",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"format": "prettier --write \"./**/*.{js,jsx,ts,tsx,css,md,json}\" --config ./.prettierrc"
},
"dependencies": {
"@formatjs/intl": "^3.1.6",
"big.js": "^7.0.1",
"casper-js-sdk": "^5.0.3",
"copy-to-clipboard": "^3.3.3",
"date-fns": "^4.1.0",
"downshift": "^9.0.4",
"facepaint": "^1.2.1",
"i18next": "^25.3.2",
"react-inlinesvg": "^4.2.0",
"react-loading-skeleton": "^3.5.0",
"react-modal": "^3.16.1",
"reakit": "^1.3.11",
"styled-components": "^5.3.11",
"web-vitals": "^4.2.4"
},
"peerDependencies": {
"react": "^18.3.0",
"react-dom": "^18.3.0",
"styled-components": "^5.3.11"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"plugin:storybook/recommended"
],
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@storybook/addon-docs": "^9.0.18",
"@storybook/addon-themes": "^9.0.18",
"@storybook/react-vite": "^9.0.18",
"@testing-library/jest-dom": "^6.6.4",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/big.js": "^6.2.2",
"@types/facepaint": "^1.2.2",
"@types/jest": "^29.5.14",
"@types/node": "^24.1.0",
"@types/react": "^18.3.23",
"@types/react-dom": "^18.3.7",
"@types/react-modal": "^3.16.3",
"@types/styled-components": "^5.1.34",
"@vitejs/plugin-react": "^4.7.0",
"prettier": "^3.6.2",
"babel-plugin-named-exports-order": "^0.0.2",
"eslint-plugin-storybook": "^9.0.18",
"remark-gfm": "^4.0.1",
"shx": "^0.4.0",
"storybook": "^9.0.18",
"typescript": "^5.8.3",
"vite": "^7.0.6",
"vite-plugin-dts": "^4.5.4",
"vite-plugin-svgr": "^4.3.0"
}
}