-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.33 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.33 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@jpbbots/theme",
"description": "JPBBots Chakra-UI theme",
"version": "4.1.4",
"author": "JPBBots",
"contributors": [
"JPBBerry <me@jpbberry.dev>",
"Xyoyu <ken@slinky.link>"
],
"license": "MIT",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build": "npm run build:cjs && npm run build:esm",
"build:esm": "tsc -p tsconfig.esm.json && tscpaths -p tsconfig.esm.json -s src -o lib/esm",
"build:cjs": "tsc -p tsconfig.cjs.json && tscpaths -p tsconfig.cjs.json -s src -o lib/cjs",
"storybook": "storybook dev -p 6006",
"storybook:cache": "storybook dev -p 6006",
"build:storybook": "storybook build",
"theme:types": "chakra-cli tokens ./lib/cjs/theme/index.js",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"prettier": "prettier --write src/**/*.*",
"build-storybook": "storybook build"
},
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"exports": {
"require": "./lib/cjs/index.js",
"import": "./lib/esm/index.js"
},
"files": [
"lib/"
],
"repository": {
"type": "git",
"url": "https://github.com/JPBBots/theme.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"dependencies": {
"@chakra-ui/react": "^2.4.6",
"@chakra-ui/styled-system": "^2.5.1",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"framer-motion": "^6.5.1",
"react-icons": "^4.2.0",
"react-textarea-autosize": "^8.3.3"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.18.6",
"@chakra-ui/cli": "^1.5.0",
"@storybook/addon-actions": "^7.0.6",
"@storybook/addon-essentials": "^7.0.6",
"@storybook/addon-interactions": "7.0.6",
"@storybook/addon-links": "^7.0.6",
"@storybook/addons": "^7.0.6",
"@storybook/blocks": "7.0.6",
"@storybook/cli": "^7.0.6",
"@storybook/core": "^6.5.15",
"@storybook/preset-typescript": "^3.0.0",
"@storybook/react": "^7.0.6",
"@storybook/react-webpack5": "7.0.6",
"@storybook/testing-library": "0.0.14-next.2",
"@storybook/theming": "^7.0.6",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@types/humanize-duration": "^3.27.1",
"@types/jest": "^26.0.24",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.21.0",
"conventional-changelog-conventionalcommits": "^4.6.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.23.1",
"fork-ts-checker-webpack-plugin": "^7.2.2",
"html-webpack-plugin": "^5.5.0",
"husky": "^7.0.1",
"jest": "^27.0.6",
"lerna": "^4.0.0",
"lint-staged": "^11.1.2",
"prettier": "^2.2.1",
"prop-types": "15.8.1",
"react": "^18.2.0",
"react-docgen-typescript-plugin": "^1.0.2",
"react-dom": "^18.2.0",
"storybook": "7.0.6",
"ts-jest": "^27.0.4",
"tsconfig-paths": "^3.10.1",
"tsconfig-paths-webpack-plugin": "^3.5.1",
"tscpaths": "^0.0.9",
"typescript": "^4.3.5",
"webpack": "^5.75.0"
}
}