-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
84 lines (84 loc) · 2.47 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
{
"name": "@obolnetwork/obol-ui",
"version": "1.0.40",
"main": "dist/index.js",
"module": "dist/index.es.js",
"license": "MIT",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"ds:build": "rollup -c",
"ds:release": "yarn ds:build && np",
"test": "jest",
"prepare": "husky install",
"format:write": "prettier --write \"**/*.{css,js,json,jsx,ts,tsx}\"",
"format": "prettier \"**/*.{css,js,json,jsx,ts,tsx}\""
},
"dependencies": {
"@radix-ui/react-accordion": "^0.1.6",
"@radix-ui/react-checkbox": "^1.0.0",
"@radix-ui/react-dialog": "^0.1.7",
"@radix-ui/react-icons": "^1.1.1",
"@radix-ui/react-radio-group": "^0.1.5",
"@radix-ui/react-switch": "^1.0.1",
"@radix-ui/react-tabs": "^0.1.5",
"@radix-ui/react-toggle-group": "^0.1.5",
"@radix-ui/react-tooltip": "^0.1.7",
"@stitches/react": "~1.2.8",
"next": "^13.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"uuidv4": "^6.2.13"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@storybook/addon-actions": "^6.5.12",
"@storybook/addon-essentials": "^6.5.12",
"@storybook/addon-interactions": "^6.5.12",
"@storybook/addon-links": "^6.5.12",
"@storybook/react": "^6.5.12",
"@storybook/testing-library": "^0.1.0",
"@testing-library/dom": "^9.2.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/node": "17.0.21",
"@types/react": "17.0.40",
"babel-loader": "^8.2.4",
"cross-env": "^7.0.3",
"eslint": "8.11.0",
"eslint-config-next": "^13.3.1-canary.6",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-storybook": "^0.6.4",
"figma-api": "^1.10.1",
"husky": ">=7",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.4.3",
"lint-staged": ">=10",
"np": "^7.6.1",
"prettier": "^2.8.4",
"rollup": "^2.70.1",
"rollup-plugin-typescript2": "^0.31.2",
"storybook-addon-designs": "^6.3.1",
"ts-node": "^10.9.1",
"tslib": "^2.3.1",
"typescript": "^4.6.3",
"use": "^3.1.1"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}