-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.8 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
99
100
101
{
"name": "@nestdotland/ui",
"version": "0.1.0-test.11",
"description": "Custom Chakra UI theme and components for Nest.",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/ui.esm.js",
"typings": "dist/index.d.ts",
"files": [
"README.md",
"CHANGELOG.md",
"LICENSE",
"dist"
],
"homepage": "https://ui.nest.land/",
"repository": "https://github.com/nestdotland/ui",
"bugs": "https://github.com/nestdotland/ui/issues/new/choose",
"author": {
"name": "Maximous Black",
"email": "[email protected]",
"url": "http://maximousblk.me/"
},
"engines": {
"node": ">=14"
},
"scripts": {
"all": "yarn fmt && yarn lint && yarn build && yarn test && yarn size && yarn sb:build",
"clean": "rimraf dist static node_modules CHANGELOG.md",
"start": "dts watch",
"build": "dts build",
"test": "dts test --passWithNoTests",
"lint": "dts lint src test",
"fmt": "prettier --check .",
"fmt:fix": "prettier --write .",
"prepare": "yarn build",
"size": "size-limit",
"size:why": "size-limit --why",
"sb": "start-storybook -p 6006",
"sb:build": "build-storybook --output-dir static",
"release": "yarn publish --access public --non-interactive --new-version"
},
"husky": {
"hooks": {
"pre-commit": "dts lint"
}
},
"jest": {
"testEnvironment": "jsdom"
},
"size-limit": [
{
"path": "dist/ui.esm.js",
"limit": "64 KB"
}
],
"dependencies": {
"@chakra-ui/icons": "^1.0.16",
"@chakra-ui/react": "^1.6.10",
"@chakra-ui/theme-tools": "^1.2.2",
"@emotion/react": "^11.5.0",
"@emotion/styled": "^11.3.0",
"@fontsource/inter": "^4.5.0",
"@fontsource/jetbrains-mono": "^4.5.0",
"framer-motion": "^4.1.17",
"react-icons": "^4.3.1"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@size-limit/preset-big-lib": "^7.0.5",
"@storybook/addon-a11y": "^6.4.9",
"@storybook/addon-actions": "^6.4.9",
"@storybook/addon-essentials": "^6.4.9",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-links": "^6.4.9",
"@storybook/addons": "^6.4.9",
"@storybook/builder-webpack5": "^6.4.9",
"@storybook/manager-webpack5": "^6.4.9",
"@storybook/react": "^6.4.9",
"@storybook/theming": "^6.4.9",
"@svgr/webpack": "^6.2.1",
"@types/react": "^17.0.31",
"@types/react-dom": "^17.0.10",
"babel-loader": "^8.2.3",
"dts-cli": "^1.1.4",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"prettier": "^2.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "^17.0.2",
"rimraf": "^3.0.2",
"size-limit": "^7.0.5",
"storybook-addon-performance": "^0.16.1",
"tslib": "^2.3.1",
"typescript": "^4.4.4",
"webpack": "^5.59.1"
},
"peerDependencies": {
"react": ">=17"
}
}