forked from hperrin/svelte-material-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.53 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
{
"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",
"lint": "prettier --check --plugin-search-dir=. .",
"format": "prettier --write --plugin-search-dir=. .",
"pages": "npm run bootstrap && 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):gh-pages --force && git reset --hard HEAD^",
"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",
"devDependencies": {
"@sveltejs/adapter-auto": "next",
"@sveltejs/package": "^1.0.0-next.6",
"lerna": "^5.2.0",
"prettier": "~2.7.1",
"prettier-plugin-svelte": "^2.7.0",
"sass": "^1.54.0",
"svelte": "^3.49.0",
"svelte-preprocess": "^4.10.6"
}
}