forked from hperrin/svelte-material-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.47 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
{
"name": "svelte-material-ui",
"version": "1.0.0-alpha.11",
"description": "Svelte Material UI Components",
"main": "index.js",
"scripts": {
"build": "webpack",
"serve": "serve demo",
"watch": "webpack --watch",
"pages": "git checkout gh-pages && git pull && git reset --hard HEAD^ && git rebase master && npm run build && git add . && git commit -m 'Update build files.' && git push --force origin gh-pages && git checkout master",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hperrin/svelte-material-ui.git"
},
"author": "Hunter Perrin <[email protected]>",
"bugs": {
"url": "https://github.com/hperrin/svelte-material-ui/issues"
},
"license": "Apache-2.0",
"dependencies": {
"@material/button": "^3.1.0",
"@material/card": "^3.1.0",
"@material/checkbox": "^3.1.0",
"@material/chips": "^3.1.0",
"@material/data-table": "^3.1.1",
"@material/dialog": "^3.1.0",
"@material/drawer": "^3.1.0",
"@material/elevation": "^3.1.0",
"@material/fab": "^3.1.0",
"@material/feature-targeting": "^3.1.0",
"@material/floating-label": "^3.1.0",
"@material/form-field": "^3.1.0",
"@material/icon-button": "^3.1.0",
"@material/image-list": "^3.1.0",
"@material/line-ripple": "^3.1.0",
"@material/linear-progress": "^3.1.0",
"@material/list": "^3.1.0",
"@material/menu": "^3.1.0",
"@material/menu-surface": "^3.1.0",
"@material/notched-outline": "^3.1.0",
"@material/radio": "^3.1.0",
"@material/ripple": "^3.1.0",
"@material/rtl": "^3.1.0",
"@material/select": "^3.1.0",
"@material/shape": "^3.1.0",
"@material/slider": "^3.1.0",
"@material/switch": "^3.1.0",
"@material/tab": "^3.1.0",
"@material/tab-bar": "^3.1.0",
"@material/tab-indicator": "^3.1.0",
"@material/tab-scroller": "^3.1.0",
"@material/textfield": "^3.1.0",
"@material/theme": "^3.1.0",
"@material/top-app-bar": "^3.1.0",
"@material/typography": "^3.1.0"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-loader": "^8.0.6",
"css-loader": "^3.2.0",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.12.0",
"sass-loader": "^7.2.0",
"serve": "^11.1.0",
"style-loader": "^1.0.0",
"svelte": "^3.8.0",
"svelte-loader": "^2.13.6",
"svelte-spa-router": "^1.2.0",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6"
}
}