-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.3 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
{
"private": true,
"name": "ui-system",
"version": "0.0.0",
"author": "Nerdbord",
"license": "MIT",
"homepage": "https://wawrzonnn.github.io/ui-sem",
"scripts": {
"test": "jest src",
"storybook": "cross-env NODE_OPTIONS=--openssl-legacy-provider storybook dev -p 6006",
"build-storybook": "cross-env NODE_OPTIONS=--openssl-legacy-provider storybook build",
"serve-storybook": "serve storybook-static",
"clean": "rimraf dist/",
"copy-files": "copyfiles -u 1 src/**/*.css dist/",
"build": "yarn clean && tsc -b && yarn copy-files",
"lint": "eslint --ext .ts,.tsx .",
"prepare": "husky install",
"pretty": "prettier --write .",
"predeploy": "npm run build-storybook",
"deploy-storybook": "storybook-to-ghpages"
},
"publishConfig": {
"registry": "http://139.59.154.199:4873"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-react": "^7.18.6",
"@storybook/addon-actions": "^7.6.7",
"@storybook/addon-essentials": "^7.6.7",
"@storybook/addon-interactions": "^7.6.7",
"@storybook/addon-links": "^7.6.7",
"@storybook/addon-mdx-gfm": "7.6.7",
"@storybook/react-webpack5": "7.6.7",
"@storybook/testing-library": "^0.2.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/preact": "^3.2.2",
"@types/jest": "^29.2.5",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"babel-loader": "^8.3.0",
"core-js": "^3.27.1",
"eslint": "^8.37.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.15",
"gh-pages": "^5.0.0",
"husky": "^8.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.0.0",
"preact-cli": "^3.4.2",
"prettier": "^2.8.2",
"pretty": "^2.0.0",
"pretty-quick": "^3.1.3",
"sirv-cli": "^2.0.2",
"storybook": "7.6.7",
"storybook-css-modules": "^1.0.8",
"storybook-css-modules-preset": "^1.1.1",
"typescript": "^4.9.4",
"webpack": "^5.82.0"
},
"dependencies": {
"@mdx-js/react": "^2.3.0",
"@storybook/react": "^7.6.7",
"@testing-library/react": "^14.0.0",
"classnames": "^2.3.2",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^4.4.1"
}
}