forked from aragon/gov-ui-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.58 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@aragon/ods",
"version": "0.3.1",
"description": "Implementation of the Aragon's Open Design System",
"main": "dist/index.cjs.js",
"types": "dist/types/index.d.ts",
"license": "GPL-3.0",
"files": [
"dist",
"index.css",
"tailwind.config.js"
],
"scripts": {
"setup": "husky install",
"storybook": "storybook dev -p 6006",
"build": "rollup -c",
"build:watch": "rollup -c --watch",
"build:analyze": "cross-env ANALYZE=true rollup -c",
"build:storybook": "storybook build",
"test": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint . --max-warnings=0",
"lint:fix": "eslint . --fix",
"prettify": "prettier . --check",
"prettify:fix": "prettier . --write",
"type-check": "tsc --noemit",
"deploy:storybook": "storybook-to-ghpages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aragon/ods.git"
},
"keywords": [
"aragon",
"design-system",
"open-design-system",
"react",
"tailwind"
],
"author": "Aragon Association",
"dependencies": {
"@radix-ui/react-dialog": "^1.0.4",
"@radix-ui/react-dropdown-menu": "^2.0.5",
"@tiptap/extension-link": "^2.0.3",
"@tiptap/extension-placeholder": "^2.0.3",
"@tiptap/pm": "^2.0.3",
"@tiptap/react": "^2.0.3",
"@tiptap/starter-kit": "^2.0.3",
"classnames": "^2.3.2",
"react": ">=18",
"react-blockies": "^1.4.1",
"react-dom": ">=18",
"react-dropzone": "^11.5.1",
"styled-components": ">=6",
"tailwindcss": ">=3",
"tailwindcss-fluid-type": ">=2"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.22.6",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-image": "^3.0.2",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.2",
"@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.0.26",
"@storybook/react": "^7.0.26",
"@storybook/react-webpack5": "^7.0.26",
"@storybook/storybook-deployer": "^2.8.16",
"@storybook/testing-library": "^0.2.0",
"@testing-library/jest-dom": "^6.1.0",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.5",
"@types/react-blockies": "^1.4.1",
"@types/styled-components": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"autoprefixer": "^10.4.14",
"cross-env": "^7.0.3",
"eslint": "^8.44.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.12",
"eslint-plugin-tailwindcss": "^3.13.0",
"eslint-plugin-testing-library": "^6.0.2",
"husky": "^8.0.3",
"jest": "^29.6.0",
"jest-environment-jsdom": "^29.6.0",
"lint-staged": "^13.2.3",
"postcss": "^8.4.24",
"prettier": "^2.8.8",
"prettier-plugin-organize-imports": "^3.2.2",
"prop-types": "^15.8.1",
"rollup": "^3.26.1",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-visualizer": "^5.9.2",
"storybook": "^7.0.26",
"ts-jest": "^29.1.1",
"typescript": "^5.1.5"
},
"bugs": {
"url": "https://github.com/aragon/ods/issues"
},
"homepage": "https://github.com/aragon/ods#readme",
"engines": {
"node": ">=16",
"npm": "please-use-yarn"
}
}