-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
100 lines (100 loc) · 4.05 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
{
"name": "tksui-components",
"version": "0.8.2",
"private": false,
"type": "module",
"module": "lib/esm/index.js",
"main": "lib/esm/index.js",
"files": [
"lib/"
],
"scripts": {
"clean": "rimraf lib",
"css-build": "sass --no-source-map src/styles/Entry.scss:lib/styles/index.css src/styles/designToken/ThemeToken.module.scss:lib/styles/ThemeToken.module.css",
"css-minify": "esbuild lib/styles/index.css --minify --allow-overwrite --outfile=lib/styles/index.css && esbuild lib/styles/ThemeToken.module.css --minify --allow-overwrite --outfile=lib/styles/ThemeToken.module.css",
"js-build": "tsc --project tsconfig.esm.json && tsc-alias -p tsconfig.esm.json",
"js-content-replace": "node build-content-replacer.js",
"js-minify": "esbuild lib/esm/**/*.js --minify --allow-overwrite --outdir=lib/esm",
"build-all": "npm run clean && npm run css-build && npm run css-minify && npm run js-build && npm run js-content-replace && npm run js-minify",
"patch": "npm run build-all && npm version patch && npm publish && npm run clean",
"minor": "npm run build-all && npm version minor && npm publish && npm run clean",
"major": "npm run build-all && npm version major && npm publish && npm run clean",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "jest --watch",
"test-all": "jest --watchAll"
},
"devDependencies": {
"@babel/core": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@storybook/addon-actions": "^8.2.4",
"@storybook/addon-essentials": "^8.2.4",
"@storybook/addon-interactions": "^8.2.4",
"@storybook/addon-links": "^8.2.4",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^8.2.4",
"@storybook/react-vite": "^8.2.4",
"@storybook/test": "^8.2.4",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.4",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.0.11",
"@types/react-modal": "^3.16.3",
"@types/react-slick": "^0.23.11",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"@vitejs/plugin-react": "^4.3.1",
"esbuild": "^0.19.5",
"eslint": "^8.38.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest-dom": "^4.0.3",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"eslint-plugin-storybook": "^0.6.15",
"eslint-plugin-testing-library": "^5.10.2",
"fs-extra": "^11.1.1",
"glob": "^11.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^6.0.1",
"rollup-plugin-visualizer": "^5.9.2",
"sass": "^1.69.1",
"storybook": "^8.2.4",
"ts-jest": "^29.1.1",
"tsc-alias": "^1.8.7",
"typescript": "^5.0.2",
"typescript-plugin-css-modules": "^5.0.2",
"vite": "^5.3.3",
"vite-plugin-compression2": "^0.10.4"
},
"peerDependencies": {
"react": "^18.0.0"
},
"dependencies": {
"@material-symbols/font-300": "^0.14.5",
"ag-grid-community": "^32.0.2",
"ag-grid-react": "^32.0.2",
"lodash": "^4.17.21",
"react-modal": "^3.16.1",
"react-slick": "^0.29.0",
"react-toastify": "^9.1.3",
"react-tooltip": "^5.21.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openinfradev/tksui-components.git"
},
"bugs": {
"url": "https://github.com/openinfradev/tksui-components/issues"
},
"license": "MIT"
}