This repository was archived by the owner on Jun 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 3.13 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 3.13 KB
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
{
"name": "material-cell-document",
"version": "1.0.0-rc",
"license": "AGPL-3.0",
"author": "shiy2008@gmail.com",
"homepage": "https://material.web-cell.dev/",
"repository": {
"type": "git",
"url": "git+https://github.com/EasyWebApp/material-cell-document.git"
},
"bugs": {
"url": "https://github.com/EasyWebApp/material-cell-document/issues"
},
"main": "source/index.html",
"dependencies": {
"@material/mwc-button": "^0.22.1",
"@material/mwc-checkbox": "^0.22.1",
"@material/mwc-circular-progress": "^0.22.1",
"@material/mwc-circular-progress-four-color": "^0.22.1",
"@material/mwc-dialog": "^0.22.1",
"@material/mwc-drawer": "^0.22.1",
"@material/mwc-fab": "^0.22.1",
"@material/mwc-formfield": "^0.22.1",
"@material/mwc-icon": "^0.22.1",
"@material/mwc-icon-button": "^0.22.1",
"@material/mwc-icon-button-toggle": "^0.22.1",
"@material/mwc-linear-progress": "^0.22.1",
"@material/mwc-list": "^0.22.1",
"@material/mwc-menu": "^0.22.1",
"@material/mwc-radio": "^0.22.1",
"@material/mwc-select": "^0.22.1",
"@material/mwc-slider": "^0.22.1",
"@material/mwc-snackbar": "^0.22.1",
"@material/mwc-switch": "^0.22.1",
"@material/mwc-tab": "^0.22.1",
"@material/mwc-tab-bar": "^0.22.1",
"@material/mwc-textarea": "^0.22.1",
"@material/mwc-textfield": "^0.22.1",
"@material/mwc-top-app-bar": "^0.22.1",
"@material/mwc-top-app-bar-fixed": "^0.22.1",
"boot-cell": "^1.9.5",
"cell-router": "^2.0.4",
"classnames": "^2.3.1",
"github-web-widget": "^3.0.0-beta.9",
"material-cell": "^2.0.0-rc.3",
"web-cell": "2.3.0",
"web-utility": "^2.6.0"
},
"devDependencies": {
"@types/classnames": "^2.3.1",
"autoprefixer": "^9.8.6",
"husky": "^7.0.1",
"less": "^4.1.1",
"lint-staged": "^11.0.1",
"mark-cell": "^0.4.8",
"parcel-bundler": "^1.12.5",
"postcss-modules": "^3.2.2",
"prettier": "^2.3.2",
"typescript": "^4.3.5",
"workbox-cli": "^6.1.5"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid",
"tabWidth": 4
},
"lint-staged": {
"*.{html,md,mdx,css,less,json,yml,js,ts,tsx}": "prettier --write"
},
"postcss": {
"modules": true,
"plugins": {
"autoprefixer": {
"grid": true
}
}
},
"scripts": {
"prepare": "husky install",
"test": "lint-staged",
"pack-mdx": "mark-cell document/source -p web-cell -f createCell",
"pack-tsx": "parcel build source/index.html --public-url .",
"pack-test": "cd document/test/ && parcel build index.html --public-url . -d ../../dist/test/",
"build": "rm -rf dist/ document/dist/ && npm run pack-mdx && npm run pack-tsx && npm run pack-test && workbox generateSW",
"start": "npm run pack-mdx && parcel source/index.html --open"
}
}