-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.92 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.92 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
{
"name": "@rxdi/ui-kit",
"version": "0.7.141",
"description": "UI Components for building graphql-server website",
"bolt": {
"workspaces": [
"src",
"develop"
]
},
"scripts": {
"start": "parcel ./develop/index.html --out-dir build/client",
"build-docs": "rm -rf docs && parcel build ./develop/index.html --out-dir ./docs --public-url /ui-kit && cp -r ./docs/index.html ./docs/404.html",
"build-all": "npm run build && rm -rf ./docs && cp -r ./dist/* ./src && bolt ws exec -- npm run build && cp -r ./docs/index.html ./docs/404.html",
"patch": "rm -rf dist && tsc && cp -r ./dist/* . && npm version patch && npm publish --update-readme --access public && npm run clean && bolt",
"clean": "git clean -dxf",
"clean-build": "rm -rf package-lock.json node_modules/ .cache/ build/",
"build": "rm -rf dist && tsc && cp -r ./dist/* ."
},
"repository": {
"type": "git",
"url": "ssh://git@github.com:rxdi/ui-kit.git"
},
"keywords": [
"Ui",
"components",
"web-components",
"rxdi"
],
"author": "Kristiyan Tachev",
"license": "MIT",
"devDependencies": {
"@rxdi/forms": "^0.7.133",
"@rxdi/lit-html": "^0.7.133",
"@rxdi/router": "^0.7.133",
"@types/animejs": "^3.1.0",
"@types/js-yaml": "^3.12.1",
"@types/marked": "^0.7.0",
"@types/node": "^12.0.10",
"@types/sortablejs": "^1.10.0",
"cssnano": "^4.1.10",
"husky": "^3.0.9",
"typescript": "^3.9.3"
},
"browserslist": [
"last 1 chrome versions"
],
"types": "./index.d.ts",
"module": "./index.js",
"typings": "./index.d.ts",
"dependencies": {
"@rxdi/core": "^0.7.133",
"@rxdi/graphql-client": "^0.7.133",
"animejs": "^3.1.0",
"graphql-tag": "^2.10.1",
"graphql": "^14.5.8",
"infinite-carousel-wc": "^0.5.3",
"js-yaml": "^3.13.1",
"marked": "^1.2.5",
"router-slot": "^1.5.2",
"shades": "^2.1.0",
"sortablejs": "^1.10.1"
}
}