-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
96 lines (96 loc) · 3.6 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
{
"name": "ooni-components",
"version": "0.7.0-alpha.12",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/ooni/design-system.git",
"homepage": "http://ooni.github.io/design-system",
"author": "Arturo Filastò <[email protected]>",
"license": "BSD-3-Clause",
"dependencies": {
"react-select": "^5.8.0",
"tailwind-merge": "^2.5.2"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@biomejs/biome": "1.5.3",
"@chromatic-com/storybook": "^1.8.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@rollup/plugin-url": "^8.0.2",
"@storybook/addon-essentials": "^8.2.9",
"@storybook/addon-interactions": "^8.2.9",
"@storybook/addon-links": "^8.2.9",
"@storybook/addon-onboarding": "^8.2.9",
"@storybook/blocks": "^8.2.9",
"@storybook/react": "^8.2.9",
"@storybook/react-vite": "^8.2.9",
"@storybook/test": "^8.2.9",
"@svgr/rollup": "^8.1.0",
"@tailwindcss/forms": "^0.5.7",
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/react": "^18.2.57",
"@types/react-dom": "^18.2.19",
"autoprefixer": "^10.4.17",
"babel-plugin-inline-react-svg": "^2.0.2",
"cheerio": "^1.0.0-rc.12",
"gh-pages": "^6.1.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-svg-transformer": "^1.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.2.1",
"rimraf": "^5.0.7",
"rollup": "^4.22.4",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-filesize": "^10.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.36.0",
"rollup-plugin-visualizer": "^5.12.0",
"storybook": "^8.2.9",
"tailwindcss": "^3.4.4",
"ts-jest": "^29.1.5",
"tslib": "^2.6.3",
"typescript": "^5.5.3",
"vite": "^5.3.6",
"yalc": "^1.0.0-pre.53"
},
"peerDependencies": {
"react": ">= 17",
"react-icons": ">= 4",
"tailwindcss": ">=3.0.0"
},
"scripts": {
"build": "yarn run rollup -c",
"build:tailwind": "tailwindcss -o tailwind/tailwind.css",
"create-icons-dir": "rimraf src/components/icons && npx mkdirp src/components/icons",
"create-icons": "npm run create-icons-dir && node src/bin/create-icons",
"tag": "git tag -s -a v$npm_package_version -m \"ooni-components $npm_package_version\"",
"tag:win": "git tag -s -a v%npm_package_version% -m \"ooni-components %npm_package_version%\"",
"test": "jest",
"lint": "eslint --ignore-path .gitignore --ignore-pattern '/components/icons/*' .",
"release": "yarn run build && yarn publish --new-version $npm_package_version",
"release:win": "yarn run build && yarn publish --new-version %npm_package_version%",
"release:alpha": "yarn run build && yarn publish --tag alpha --new-version $npm_package_version",
"eslint": "esw src/**",
"eslint-watch": "esw -w --changed src/**",
"eslint-watch-quiet": "esw -w --quiet --changed src/**",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build"
},
"files": ["dist", "animations", "svgs", "index.d.ts", "icons", "tailwind"]
}