-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
106 lines (106 loc) · 2.86 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "react-material-site",
"version": "0.7.20",
"description": "A VERY opinionated website framework built with react and material design.",
"homepage": "https://techcoop.github.io/react-material-site",
"main": "src/index.js",
"module": "lib/index.js",
"jsnext:main": "src/index.js",
"author": "colingagnon",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/techcoop/react-material-site.git"
},
"files": [
"LICENSE",
"README.md",
"bin/",
"lib/",
"scripts/",
"src/"
],
"keywords": [
"techcoop",
"react",
"material design",
"material design components web",
"rmwc",
"framework"
],
"dependencies": {
"@rmwc/avatar": "^5.3.1",
"@rmwc/button": "^5.2.0",
"@rmwc/card": "^5.2.0",
"@rmwc/checkbox": "^5.2.0",
"@rmwc/chip": "^5.3.1",
"@rmwc/circular-progress": "^5.4.3",
"@rmwc/data-table": "^5.2.0",
"@rmwc/dialog": "^5.2.0",
"@rmwc/drawer": "^5.2.0",
"@rmwc/elevation": "^5.2.0",
"@rmwc/fab": "^5.2.0",
"@rmwc/formfield": "^5.2.0",
"@rmwc/grid": "^5.2.0",
"@rmwc/grid-list": "^5.2.0",
"@rmwc/icon": "^5.2.0",
"@rmwc/icon-button": "^5.2.0",
"@rmwc/linear-progress": "^5.2.0",
"@rmwc/list": "^5.2.0",
"@rmwc/menu": "^5.2.0",
"@rmwc/radio": "^5.2.0",
"@rmwc/select": "^5.2.0",
"@rmwc/slider": "^5.2.0",
"@rmwc/snackbar": "^5.2.0",
"@rmwc/switch": "^5.2.0",
"@rmwc/tabs": "^5.2.0",
"@rmwc/textfield": "^5.2.0",
"@rmwc/top-app-bar": "^5.2.0",
"@rmwc/typography": "^5.2.0",
"auth0-js": "^9.8.0",
"chokidar": "^2.0.3",
"connected-react-router": "^6.3.2",
"cross-spawn": "^6.0.5",
"enquire.js": "^2.1.6",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"form-google-sheets": "^0.1.1",
"history": "^4.9.0",
"icons-ceivable": "^0.1.0",
"is-reachable": "^2.4.0",
"jest-enzyme": "^7.0.0",
"json-google-docs": "^0.2.0",
"node-sass": "^4.9.3",
"prop-types": "^15.7.2",
"react": "^16.4.0",
"react-app-rewired": "^2.0.2",
"react-dom": "^16.4.0",
"react-redux": "^6.0.0",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-scripts": "^2.0.5",
"react-test-renderer": "^16.1.1",
"redux": "^4.0.0",
"redux-thunk": "^2.2.0",
"rimraf": "^2.6.2",
"superagent": "^4.0.0-beta.5",
"webpack-bundle-analyzer": "^3.0.3"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"standard-version": "^4.0.0"
},
"scripts": {
"test": "react-app-rewired test --env=jsdom",
"clean": "rimraf lib",
"compile": "babel src --out-dir lib",
"build": "yarn clean && node build.js",
"release": "yarn build && standard-version"
},
"bin": {
"react-material-site": "./bin/index.js"
}
}