-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 844 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 844 Bytes
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
{
"name": "@bongohive/mui-forms",
"version": "1.0.0",
"description": "",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
"build/**/*"
],
"scripts": {
"clean": "del ./build/*",
"build": "npm clean && tsc",
"pub": "git add . && git commit -m \"Updates\" && npm version patch && npm build && npm publish",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "Aubrey Zulu",
"license": "ISC",
"devDependencies": {
"del-cli": "^4.0.1",
"typescript": "^4.7.4"
},
"dependencies": {
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@mui/icons-material": "^5.8.4",
"@mui/lab": "^5.0.0-alpha.89",
"@mui/material": "^5.8.7",
"moment": "^2.29.4",
"react": "^18.2.0",
"react-hook-form": "^7.33.1"
}
}