-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.49 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.49 KB
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
{
"name": "@leanstacks/react-common",
"version": "1.1.0",
"description": "Leanstacks organization common React components.",
"type": "module",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"build": "rollup -c --bundleConfigAsCjs",
"clean": "rimraf coverage dist",
"clean:all": "npm run clean && rimraf storybook-static",
"lint": "eslint --ext .ts,.tsx src/",
"test": "jest",
"test:coverage": "jest --coverage --silent --verbose --color",
"test:watch": "jest --watch",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leanstacks/react-common.git"
},
"keywords": [
"react"
],
"author": "LeanStacks",
"license": "MIT",
"bugs": {
"url": "https://github.com/leanstacks/react-common/issues"
},
"homepage": "https://github.com/leanstacks/react-common#readme",
"dependencies": {
"classnames": "2.5.1",
"dayjs": "1.11.13"
},
"devDependencies": {
"@babel/preset-env": "7.25.9",
"@babel/preset-react": "7.25.9",
"@babel/preset-typescript": "7.25.9",
"@rollup/plugin-commonjs": "28.0.1",
"@rollup/plugin-node-resolve": "15.3.0",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "12.1.1",
"@storybook/addon-essentials": "^7.4.0",
"@storybook/addon-interactions": "^7.4.0",
"@storybook/addon-links": "^7.4.0",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/addon-styling": "^1.3.7",
"@storybook/blocks": "^7.4.0",
"@storybook/react": "^7.4.0",
"@storybook/react-webpack5": "^7.4.0",
"@storybook/testing-library": "^0.2.0",
"@testing-library/jest-dom": "6.6.2",
"@testing-library/react": "16.0.1",
"@types/jest": "29.5.14",
"@types/react": "18.3.12",
"@typescript-eslint/parser": "8.11.0",
"autoprefixer": "10.4.20",
"eslint": "8.57.1",
"eslint-config-react-app": "7.0.1",
"eslint-plugin-react": "7.37.2",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"postcss": "8.4.47",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "0.6.8",
"react": "18.3.1",
"react-dom": "18.3.1",
"rimraf": "6.0.1",
"rollup": "4.24.0",
"rollup-plugin-dts": "6.1.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"storybook": "^7.4.0",
"tailwindcss": "3.4.14",
"tslib": "2.8.0",
"typescript": "5.6.3"
},
"peerDependencies": {
"react": "18.x",
"tailwindcss": "3.x"
}
}