-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.24 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
{
"name": "react-awesome-mask-input",
"version": "1.0.1",
"description": "An input component built to be used with custom masks",
"main": "dist/MaskInput.js",
"types": "dist/MaskInput.d.ts",
"repository": "[email protected]:studiojms/react-mask-input.git",
"author": "studiojms",
"license": "MIT",
"scripts": {
"dev": "webpack --mode=development",
"build": "webpack --mode=production",
"lint": "tsc --noEmit && eslint 'src/**/*.{js,ts,tsx}'",
"docz:dev": "docz dev",
"docz:build": "docz build",
"docz:serve": "docz build && docz serve"
},
"dependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1",
"vanilla-masker": "^1.2.0"
},
"devDependencies": {
"@types/react": "^16.9.36",
"@types/react-dom": "^16.9.8",
"@types/vanilla-masker": "^1.2.0",
"@typescript-eslint/eslint-plugin": "^3.3.0",
"@typescript-eslint/parser": "^3.3.0",
"awesome-typescript-loader": "^5.2.1",
"docz": "^2.3.1",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.0",
"prettier": "^2.0.5",
"terser-webpack-plugin": "^3.0.5",
"typescript": "^3.9.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
}
}