-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
90 lines (90 loc) · 2.68 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
{
"name": "mintbase-ui",
"version": "0.9.16",
"private": false,
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist",
"public"
],
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "URL_OF_YOUR_REPOSITORY"
},
"scripts": {
"build:tsc": "tsc",
"build": "npm run clean && rollup -c --environment production",
"dev": "npm run build -- -w",
"lint": "eslint src --ext .ts,tsx,js,jsx",
"lint:types": "tsc --noEmit",
"prettier:write": "prettier --w src",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"clean": "rm -rf dist"
},
"peerDependencies": {
"react": ">=16",
"react-dom": ">=16"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.1",
"@rollup/plugin-typescript": "^8.3.0",
"@rollup/plugin-url": "^6.1.0",
"@storybook/addon-actions": "6.5.9",
"@storybook/addon-essentials": "6.5.9",
"@storybook/addon-links": "6.5.9",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/node-logger": "6.5.9",
"@storybook/react": "6.5.9",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.0.3",
"@types/node": "^17.0.5",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"autoprefixer": "^10.3.5",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-storybook": "^0.5.12",
"postcss": "^8.3.7",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-import": "^14.0.2",
"postcss-preset-env": "^6.7.0",
"postcss-url": "^10.1.3",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"rollup": "^2.62.0",
"rollup-plugin-dts": "^4.1.0",
"rollup-plugin-gzip": "^3.1.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-summary": "^1.3.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "^5.5.4",
"storybook-addon-themes": "^6.1.0",
"storybook-dark-mode": "^2.0.5",
"storybook-tailwind-dark-mode": "^1.0.15",
"tailwindcss": "^2.2.15",
"typescript": "^4.5.4",
"util": "^0.12.5",
"webpack": "^5.73.0"
},
"dependencies": {
"@types/lodash": "^4.14.182",
"lodash": "^4.17.21",
"react-inlinesvg": "^2.3.0",
"react-player": "^2.9.0",
"type-fest": "^2.13.1",
"uuidv4": "^6.2.13"
}
}