-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.26 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
{
"name": "material-ui-umd",
"version": "1.0.0",
"description": "",
"scripts": {
"serve": "http-server",
"deploy": "npm install && sh deploy.sh",
"postinstall": "sh deploy.sh",
"build:umd": "webpack-cli --entry ./interop.js",
"build:lib": "cd lib && sh build.sh",
"build:types": "tsc --project ./tsconfig.json",
"clean:umd": "rm ./dist/* && touch ./dist/meow.txt",
"clean:lib": "cd lib && sh clean.sh"
},
"main": "./index.js",
"module": "./index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/tripolskypetr/material-ui-umd.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/tripolskypetr/material-ui-umd/issues"
},
"homepage": "https://github.com/tripolskypetr/material-ui-umd#readme",
"devDependencies": {
"google-closure-compiler": "^20201102.0.1",
"http-server": "^0.12.3",
"tslint": "^6.1.2",
"typescript": "^3.8.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"@material-ui/core": "^4.9.14",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.55",
"@material-ui/pickers": "^3.2.10",
"@material-ui/styles": "^4.9.14",
"@material-ui/system": "^4.9.14"
}
}