forked from mariaKoFyber/material-ui-phone-input
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 2.72 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
{
"name": "@material-ui/phone-input",
"version": "1.0.0",
"description": "",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "rm -rf build && npm run compile",
"ci": "npm run build && npm run lint && npm test",
"compile": "tsc -p tsconfig.prod.json",
"compile-watch": "tsc -w -p tsconfig.prod.json",
"test": "mocha 'test/**/*.ts*' --require=ts-node/register --require mocha-clean",
"bundle-watch": "webpack-dev-server --open",
"publish-local": "npm publish --registry=http://localhost:4873 --force",
"lint": "tslint --fix '{src,test}/**/*.ts*'",
"bundle": "webpack --config webpack.config.prod.js",
"bundle-dev": "webpack",
"coverage": "nyc --extension=.ts --extension=.tsx --include='src/**/*.ts*' --all --reporter=html mocha --require=ts-node/register --require=source-map-support/register --recursive 'test/**/*.ts*'"
},
"files": [
"build"
],
"author": "",
"license": "ISC",
"peerDependencies": {
"@material-ui/core": "^1.4.1",
"@material-ui/icons": "^2.0.0",
"moment": "*",
"moment-range": "*",
"react": "*"
},
"dependencies": {
"@types/google-libphonenumber": "^7.4.16",
"@types/react-select": "^2.0.3",
"@types/react-text-mask": "^5.4.2",
"classnames": "^2.2.6",
"country-data": "0.0.31",
"data-class-copy": "^3.0.0",
"formstate": "^1.0.2",
"immutable": "^3.8.2",
"keycode": "^2.2.0",
"libphonenumber": "0.0.10",
"libphonenumber-js": "^1.4.4",
"mobx": "^5.0.5",
"mobx-react": "^5.2.5",
"numeral": "^2.0.6",
"prop-types": "^15.6.0",
"react-select": "^2.0.0",
"react-text-mask": "^5.4.3",
"react-transition-group": "^2.4.0",
"react-virtualized": "^9.18.0",
"text-mask-addons": "^3.8.0",
"ts-trait": "^4.1.0"
},
"devDependencies": {
"@material-ui/core": "^1.4.3",
"@material-ui/icons": "^2.0.1",
"@types/angular-ui-router": "^1.1.40",
"@types/classnames": "^2.2.5",
"@types/fontfaceobserver": "^0.0.6",
"@types/history": "^4.7.0",
"@types/immutable": "^3.8.7",
"@types/jquery": "^3.2.17",
"@types/lodash": "^4.14.116",
"@types/mocha": "^5.2.5",
"@types/numeral": "^0.0.22",
"@types/prop-types": "^15.5.2",
"@types/react": "^16.0.31",
"@types/react-dom": "^16.0.5",
"@types/react-transition-group": "^2.0.11",
"@types/react-virtualized": "^9.7.10",
"@types/webpack-env": "^1.13.6",
"babel-core": "^6.26.3",
"mocha": "^5.2.0",
"mocha-clean": "^1.0.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"ts-node": "^7.0.1",
"tslint": "^5.10.0",
"typescript": "^3.1.1",
"webpack": "^3.12.0",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-dev-server": "^2.11.1"
}
}