forked from unicef/material-ui-currency-textfield
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
55 lines (55 loc) · 1.59 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
{
"name": "@lupus-ai/mui-currency-textfield",
"version": "1.0.3",
"description": "Currency input textfield for react with Material-ui style",
"keywords": [
"material design",
"material ui",
"currency",
"currency input",
"currency textfield",
"react"
],
"main": "./dist/index.js",
"homepage": "https://lupusai.github.io/mui-currency-textfield/",
"scripts": {
"build": "webpack",
"start": "webpack serve",
"styleguide": "styleguidist server",
"predeploy": "styleguidist build",
"deploy": "gh-pages -d styleguide",
"transpile": "./node_modules/@babel/cli/bin/babel.js src/components/CurrencyTextField -d dist --copy-files",
"prepublishOnly": "npm run transpile",
"publish-demo": "npm run build && npm run deploy",
"format": "prettier --write \"./src/**/*.{js,jsx}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/LupusAI/mui-currency-textfield.git"
},
"author": "LupusAI",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"babel-loader": "^9.1.0",
"css-loader": "^6.7.3",
"gh-pages": "^4.0.0",
"prettier": "^2.8.1",
"react-styleguidist": "^13.0.0",
"style-loader": "^3.3.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/material": "^5.11.1",
"autonumeric": "^4.6.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"tss-react": "^4.5.0"
}
}