-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
111 lines (111 loc) · 2.98 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
102
103
104
105
106
107
108
109
110
111
{
"version": "1.0.30",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=10"
},
"scripts": {
"analyze": "size-limit --why",
"build-storybook": "build-storybook",
"build": "tsdx build",
"lint": "tsdx lint",
"prepare": "tsdx build",
"prestorybook": "rimraf node_modules/.cache/storybook",
"push": "yalc push",
"size": "size-limit",
"start": "tsdx watch",
"start:concurrent": "concurrently \"tsdx watch\" \"yarn watch\"",
"storybook": "start-storybook -p 6006",
"test": "tsdx test --passWithNoTests",
"watch": "nodemon --exec \"yarn push\"",
"chromatic": "npx chromatic --project-token=ac536865f119"
},
"peerDependencies": {
"@chakra-ui/react": ">=1.6.7",
"@chakra-ui/icons": "^1.1.7",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"framer-motion": "^5",
"react": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"description": "Masai UI component library designed to work seamlessly with Chakra UI",
"name": "@masaischool/lotus",
"author": "Masai Developers",
"module": "dist/lotus.esm.js",
"size-limit": [
{
"path": "dist/lotus.cjs.production.min.js",
"limit": "1 s"
},
{
"path": "dist/lotus.esm.js",
"limit": "1 s"
}
],
"devDependencies": {
"@babel/core": "^7.14.3",
"@chakra-ui/core": "^0.8.0",
"@chakra-ui/icons": "^1.1.7",
"@chakra-ui/react": "^1.6.10",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^7.1.3",
"@semantic-release/release-notes-generator": "^9.0.2",
"@size-limit/preset-big-lib": "^4.12.0",
"@size-limit/preset-small-lib": "^4.11.0",
"@storybook/addon-essentials": "^6.2.9",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-links": "^6.2.9",
"@storybook/addons": "^6.2.9",
"@storybook/react": "^6.2.9",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.7",
"@types/jest-axe": "^3.5.1",
"@types/react": "^17.0.8",
"@types/react-dom": "^17.0.5",
"babel-loader": "^8.2.2",
"chromatic": "^6.5.3",
"concurrently": "^6.2.0",
"framer-motion": "^6.2.1",
"husky": "^6.0.0",
"jest-axe": "^4.1.0",
"nodemon": "^2.0.12",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.2.0",
"react-is": "^17.0.2",
"rimraf": "^3.0.2",
"size-limit": "^4.11.0",
"storybook-addon-performance": "^0.16.0",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typescript": "^4.3.2",
"yalc": "^1.0.0-pre.53"
},
"keywords": [
"lotus",
"masai-school"
],
"bugs": {
"url": "https://github.com/masai-codes/lotus/issues"
}
}