-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.47 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "rhtml",
"version": "0.0.133",
"description": "Reactive HyperText Markup Language",
"bolt": {
"workspaces": [
"packages/*"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"scripts": {
"bolt": "npx bolt && rm -rf ./packages/graphql/node_modules/@rxdi/lit-html ./packages/components/node_modules/@rxdi/lit-html ./packages/renderer/node_modules/@rxdi/lit-html ./packages/operators/node_modules/@rxdi/lit-html ./packages/experiments/node_modules/@rxdi/lit-html",
"start": "npx parcel ./examples/main/index.html --out-dir build/examples/main",
"start-hydrate": "npx parcel ./examples/hydrate/index.html --out-dir build/examples/hydrate",
"start-performance": "npx parcel ./examples/performance/index.html --out-dir build/examples/performance",
"build:docs": "npm --prefix ./documentation run build && cp -r ./documentation/build/ docs",
"patch": "npx bolt ws exec -- npm version patch",
"build": "npx bolt ws exec -- npm run build",
"publish-packages": "npx bolt ws exec -- npm publish --update-readme --access public",
"clean": "git clean -dxf",
"test": "npx bolt ws exec -- npm run test",
"lint": "npx bolt ws exec -- npm run lint",
"lint-fix": "npx bolt ws exec -- npm run lint-fix"
},
"repository": {
"type": "git",
"url": "[email protected]:rhtml/rhtml.git"
},
"author": "Kristiyan Tachev",
"license": "MIT",
"devDependencies": {
"@types/jest": "^24.0.18",
"husky": "^3.0.9",
"@rxdi/bolt": "^0.24.3",
"@abraham/reflection": "^0.7.0",
"typescript": "^5.3.3",
"eslint": "^8.47.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-simple-import-sort": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"prettier": "^2.0.5",
"ts-jest": "25.2.1",
"jest": "^24.9.0",
"@angular-devkit/core": "^7.3.7",
"@angular-devkit/schematics": "^7.3.7",
"@angular-devkit/schematics-cli": "^0.13.7",
"ts-morph": "^1.3.1"
},
"browserslist": [
"last 1 chrome versions"
],
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"typings": "./dist/index.d.ts",
"dependencies": {
"@rxdi/core": "^0.7.178",
"@rxdi/graphql-client": "^0.7.178",
"@rxdi/lit-html": "^0.7.178",
"shades": "^2.1.0",
"rxjs": "^7.8.0",
"graphql": "^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0",
"graphql-tag": "^2.12.6"
}
}