-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.27 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
{
"name": "@rhtml/core",
"version": "0.0.15",
"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": "npx parcel build ./examples/main/index.html --out-dir docs --public-url rhtml && cp ./docs/index.html ./docs/404.html",
"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": {
"@rhtml/di": "^0.0.132",
"@rxdi/bolt": "^0.24.3",
"@types/jest": "^24.0.18",
"@types/node": "^20.11.24",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"eslint": "^8.47.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-simple-import-sort": "^5.0.0",
"husky": "^3.0.9",
"jest": "^24.9.0",
"prettier": "^2.0.5",
"ts-jest": "25.2.1",
"typescript": "^5.3.3",
"@rhtml/schematics": "^0.0.128",
"commander": "8.2.0",
"esbuild": "0.20.1"
},
"browserslist": [
"last 1 chrome versions"
],
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"typings": "./dist/index.d.ts",
"dependencies": {
"fastify": "^4.26.2",
"mongoose": "^8.2.1"
}
}