-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
82 lines (82 loc) · 2.02 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
{
"name": "react-mui-login-register",
"version": "0.7.3",
"description": "react-mui-login-register React component",
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"css",
"es",
"lib",
"umd"
],
"engines": {
"node": ">= 9.0"
},
"scripts": {
"build": "nwb build-react-component",
"clean": "nwb clean-module && nwb clean-demo",
"start": "nwb serve-react-demo",
"test": "jest",
"test:ci": "jest --ci --reporters=default --reporters=jest-junit",
"test:update": "jest -u",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"deploy:demo": "surge --project demo/dist --domain react-mui-login-register.surge.sh"
},
"dependencies": {
"@material-ui/core": "^3.9.2",
"formsy-react": "^1.1.5",
"lodash": "^4.17.11",
"mdi-material-ui": "^5.10.0",
"prop-types": "^15.7.2"
},
"peerDependencies": {
"react": "^16.8.5",
"react-dom": "^16.8.5"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-react": "^7.0.0",
"babel-jest": "^24.5.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.11.2",
"jest": "^24.5.0",
"jest-junit": "6.3.0",
"np": "^4.0.2",
"nwb": "^0.23.0",
"react": "^16.8.5",
"react-dom": "^16.8.5",
"react-test-renderer": "^16.8.5",
"surge": "^0.20.1",
"typeface-roboto": "^0.0.54",
"upath": "^1.1.0"
},
"resolutions": {
"querystringify": "~2.0.0"
},
"author": "Geoff Bourne",
"homepage": "https://github.com/itzg/react-mui-login-register",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/itzg/react-mui-login-register.git"
},
"keywords": [
"react-component"
],
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
},
"jest-junit": {
"output": "test-results/jest/junit.xml"
}
}