-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
129 lines (129 loc) · 4.12 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
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "val-design",
"type": "module",
"version": "0.0.46",
"private": false,
"description": "React UI component library",
"author": "Cupid Valentine",
"license": "MIT",
"homepage": "https://valcosmos.github.io/val-design",
"repository": {
"type": "git",
"url": "https://github.com/valcosmos/val-design.git"
},
"keywords": [
"val-design",
"front-end",
"CSS",
"Sass",
"React",
"Component",
"UI",
"TypeScript",
"React Hooks"
],
"main": "dist/index.es.js",
"module": "dist/index.es.js",
"unpkg": "dist/index.umd.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"build-ts": "tsc -p tsconfig.build.json",
"build-css": "sass --embed-sources ./src/styles/index.scss ./dist/index.css && sass --embed-sources --style compressed ./src/styles/index.scss ./dist/index.min.css",
"clean": "rimraf ./dist",
"build": "yarn clean && yarn lint && yarn build-es && yarn build-umd",
"prepublishOnly": "yarn build",
"prepare": "husky",
"test": "vitest",
"coverage": "vitest run --coverage",
"build-es": "rollup --config rollup.esm.config.js --bundleConfigAsCjs",
"build-umd": "rollup --config rollup.umd.config.js --bundleConfigAsCjs",
"gt": "node --loader ts-node/esm scripts/create.ts",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@floating-ui/react": "^0.26.20",
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"@react-spring/web": "^9.7.4",
"async-validator": "^4.2.5",
"axios": "^1.7.2",
"classnames": "^2.5.1",
"dayjs": "^1.11.12",
"lodash-es": "^4.17.21",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-transition-group": "^4.4.5",
"uuid": "^10.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^2.23.2",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.7",
"@rollup/plugin-terser": "^0.4.4",
"@storybook/addon-essentials": "^8.2.6",
"@storybook/addon-interactions": "^8.2.6",
"@storybook/addon-links": "^8.2.6",
"@storybook/blocks": "^8.2.6",
"@storybook/react": "^8.2.6",
"@storybook/react-vite": "^8.2.6",
"@storybook/testing-library": "^0.2.2",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@types/fs-extra": "^11.0.4",
"@types/lodash-es": "^4.17.12",
"@types/react-dom": "^18.3.0",
"@types/react-transition-group": "^4.4.10",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitejs/plugin-react-swc": "^3.7.0",
"@vitest/coverage-c8": "^0.33.0",
"babel-loader": "^9.1.3",
"child_process": "^1.0.2",
"dirname-filename-esm": "^1.1.2",
"eslint": "^9.7.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.9.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.0.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-storybook": "^0.8.0",
"fs-extra": "^11.2.0",
"handlebars": "^4.7.8",
"husky": "^9.1.1",
"jsdom": "^24.1.1",
"path-exists": "^5.0.0",
"prettier": "^3.3.3",
"prop-types": "^15.8.1",
"rimraf": "^6.0.1",
"rollup": "^4.19.0",
"rollup-plugin-exclude-dependencies-from-bundle": "^1.1.23",
"rollup-plugin-sass": "^1.13.1",
"rollup-plugin-typescript2": "^0.36.0",
"sass": "^1.77.8",
"storybook": "^8.2.6",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"vite": "^5.3.4",
"vitest": "^2.0.4"
}
}