-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
72 lines (72 loc) · 2.33 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
{
"name": "sagu-ui",
"version": "2.3.3",
"description": "It's a simple and faster React library",
"homepage": "https://vczb.github.io/sagu-ui",
"repository": {
"type": "git",
"url": "git+https://github.com/vczb/sagu-ui.git"
},
"main": "lib/index.js",
"types": "lib",
"scripts": {
"build": "tsc -p .",
"lint": "eslint src --max-warnings=0",
"typecheck": "tsc --project tsconfig.json --noEmit",
"prettier:format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,md}\"",
"prettier:check": "prettier -c \"src/**/*.{ts,tsx,js,jsx,json,md}\"",
"sb": "NODE_OPTIONS=--openssl-legacy-provider storybook dev -p 6006",
"build-storybook": "NODE_OPTIONS=--openssl-legacy-provider storybook build",
"generate": "yarn plop --plopfile ./generators/plopfile.js",
"test": "jest --passWithNoTests"
},
"keywords": [
"React",
"UI",
"Components"
],
"author": "vczb",
"email": "[email protected]",
"license": "MIT",
"peerDependencies": {
"react": ">=17.0.0"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@storybook/addon-actions": "^7.1.1",
"@storybook/addon-essentials": "^7.1.1",
"@storybook/addon-links": "^7.1.1",
"@storybook/react": "^7.1.1",
"@storybook/react-webpack5": "^7.1.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "12.1.5",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^28.1.7",
"@types/react": "^17.0.15",
"@types/styled-components": "^5.1.11",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"babel-loader": "^8.2.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-storybook": "^0.6.13",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"jest-styled-components": "^7.1.0",
"plop": "^3.1.1",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"storybook": "^7.1.1",
"styled-components": "^5.3.0",
"ts-jest": "^28.0.8",
"typescript": "^4.3.5",
"typescript-plugin-styled-components": "^2.0.0"
}
}