-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.9 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
{
"name": "n6-ui",
"version": "1.8.6",
"description": "N6 Network UI Framework",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.esm.js",
"browser": "dist/index.browser.js",
"scripts": {
"build": "rollup -c",
"test": "jest",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "eslint src/**/*.ts src/**/*.tsx",
"prepare": "npm run build",
"prepublishOnly": "npm run test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BuidlerDAO/n6-ui.git"
},
"bugs": {
"url": "https://github.com/BuidlerDAO/n6-ui/issues"
},
"homepage": "https://github.com/BuidlerDAO/n6-ui/blob/main/README.md",
"keywords": [
"ui-library",
"react",
"typescript",
"component-library"
],
"author": "Dendi",
"license": "ISC",
"devDependencies": {
"@chromatic-com/storybook": "3.2.4",
"@eslint/js": "^9.17.0",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.0.0",
"@storybook/addon-essentials": "8.5.1",
"@storybook/addon-interactions": "8.5.1",
"@storybook/addon-onboarding": "8.5.1",
"@storybook/blocks": "8.5.1",
"@storybook/react": "8.5.1",
"@storybook/react-vite": "8.5.1",
"@storybook/test": "8.5.1",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.14",
"@types/lodash.uniqby": "^4.7.9",
"@types/react": "^18.3.16",
"@types/react-dom": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-storybook": "^0.11.2",
"globals": "^15.13.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.4.2",
"rollup": "^3.24.0",
"rollup-plugin-postcss": "^4.0.2",
"storybook": "8.5.1",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"files": [
"dist/**/*"
],
"dependencies": {
"@types/lodash.debounce": "^4.0.9",
"ahooks": "^3.8.4",
"classnames": "^2.5.1",
"dayjs": "^1.11.13",
"lodash.debounce": "^4.0.8",
"lodash.uniqby": "^4.7.0",
"react-loader-spinner": "^6.1.6",
"react-spring-bottom-sheet": "^3.4.1",
"swiper": "^8.4.7",
"tailwindcss": "^3.4.16",
"zustand": "^5.0.2"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}