-
-
Notifications
You must be signed in to change notification settings - Fork 285
/
package.json
54 lines (54 loc) · 1.73 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
{
"name": "svelte-material-ui-dev",
"version": "dev",
"description": "Svelte Material UI Components",
"keywords": [
"svelte",
"svelte3",
"material-ui",
"material-design",
"material",
"svelte-components",
"sveltejs"
],
"scripts": {
"bootstrap": "lerna bootstrap --hoist --nohoist \"@tsconfig/svelte\"",
"check": "lerna run check",
"clean": "lerna run clean",
"build": "lerna run build",
"lint": "prettier --check --plugin-search-dir=. .",
"format": "prettier --write --plugin-search-dir=. .",
"postinstall": "lerna run --ignore \"@smui-extra/site\" build",
"pages": "npm run build && npm run pages:build && npm run pages:push",
"pages:build": "cd packages/site && npm run build && cd ../..",
"pages:push": "git add -f packages/site/build && git commit -m 'chore: update built files' && git push origin $(git subtree split --prefix packages/site/build master):refs/heads/gh-pages --force && git reset --hard HEAD^",
"prepare": "husky install",
"test": "echo \"Error: no test specified\" && exit 1"
},
"lint-staged": {
"*": "prettier --check --plugin-search-dir=."
},
"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",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.3",
"husky": "^8.0.3",
"lerna": "^8.1.2",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"prettier-plugin-svelte": "^3.2.3",
"sass": "^1.76.0",
"svelte": "^4.2.15"
}
}