-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.67 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
{
"name": "gh-pages-test",
"version": "1.0.0",
"license": "UNLICENSED",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/acc-platform-uikit.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "jest --coverage",
"lint": "tsdx lint src stories tests",
"size": "size-limit",
"analyze": "size-limit --why",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build -o gh-pages/storybook",
"format": "prettier --write \"{src,stories,tests}/**/*.{js,ts,tsx}\""
},
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@size-limit/esbuild": "^8.2.6",
"@size-limit/esbuild-why": "^8.2.6",
"@size-limit/preset-small-lib": "^8.2.6",
"@storybook/addon-essentials": "7.0.23",
"@storybook/addon-interactions": "7.0.23",
"@storybook/addon-links": "7.0.23",
"@storybook/addon-styling": "^1.3.0",
"@storybook/blocks": "7.0.23",
"@storybook/react": "7.0.23",
"@storybook/react-webpack5": "7.0.23",
"@storybook/testing-library": "0.0.14-next.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/react": "^18.2.7",
"@types/react-dom": "^18.2.4",
"autoprefixer": "^10.4.14",
"husky": "^8.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"matchmedia-polyfill": "^0.3.2",
"postcss": "^8.4.24",
"prop-types": "15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup-plugin-postcss": "^4.0.2",
"size-limit": "^8.2.6",
"storybook": "7.0.23",
"tailwindcss": "^3.3.2",
"ts-jest": "^29.1.0",
"tsdx": "^0.14.1",
"tslib": "^2.5.3",
"typescript": "^5.1.3"
},
"peerDependencies": {
"react": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint src stories tests"
}
},
"prettier": {
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"engines": {
"node": ">=10"
},
"size-limit": [
{
"path": "dist/acc-platform-uikit.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/acc-platform-uikit.esm.js",
"limit": "10 KB"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/TAG-APAC-Division/acc-platform-uikit.git"
},
"bugs": {
"url": "https://github.com/TAG-APAC-Division/acc-platform-uikit/issues"
},
"homepage": "https://github.com/TAG-APAC-Division/acc-platform-uikit#readme"
}