This repository has been archived by the owner on Sep 16, 2023. It is now read-only.
forked from gothinkster/realworld-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 3.07 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@wesib/realworld-app",
"version": "2.0.1",
"description": "Wesib: RealWorld example application",
"repository": {
"type": "git",
"url": "ssh://[email protected]:wesib/realworld-app.git"
},
"license": "MIT",
"private": true,
"author": "Ruslan Lopatin <[email protected]>",
"bugs": {
"url": "https://github.com/wesib/realworld-app/issues"
},
"type": "module",
"engines": {
"node": ">=12.17.0"
},
"devDependencies": {
"@frontmeans/dom-events": "^1.2.1",
"@frontmeans/dom-primitives": "^1.1.1",
"@frontmeans/drek": "^1.3.2",
"@frontmeans/httongue": "^2.4.0",
"@frontmeans/input-aspects": "^4.4.2",
"@frontmeans/namespace-aliaser": "^2.6.3",
"@frontmeans/render-scheduler": "^1.8.2",
"@hatsy/hatsy": "^2.5.3",
"@hatsy/http-header-value": "^3.7.1",
"@hatsy/log-z-request": "^3.0.0",
"@hatsy/router": "^2.3.1",
"@hatsy/serve-static": "^2.3.1",
"@jest/globals": "^29.7.0",
"@proc7ts/amend": "^1.0.1",
"@proc7ts/context-builder": "^7.0.2",
"@proc7ts/context-values": "7.1.1",
"@proc7ts/delta-set": "^1.5.0",
"@proc7ts/fun-events": "^10.5.3",
"@proc7ts/logger": "^1.3.2",
"@proc7ts/primitives": "^3.0.2",
"@proc7ts/push-iterator": "^3.1.2",
"@proc7ts/supply": "^1.2.3",
"@proc7ts/workbench": "^1.2.1",
"@rollup/plugin-typescript": "^11.1.3",
"@run-z/eslint-config": "^3.5.0",
"@run-z/log-z": "^2.2.1",
"@types/dompurify": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"@wesib/forms": "^2.0.2",
"@wesib/generic": "^2.0.2",
"@wesib/navigation": "^2.0.2",
"@wesib/wesib": "^2.0.2",
"bootstrap": "^4.6.2",
"dompurify": "^3.0.5",
"eslint": "^8.49.0",
"eslint-plugin-jest": "^27.4.0",
"gh-pages": "^6.0.0",
"highlight.js": "^11.8.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-junit": "^16.0.0",
"jest-mock": "^29.7.0",
"marked": "^9.0.1",
"marked-highlight": "^2.0.6",
"prettier": "^2.8.8",
"prettier-eslint-cli": "^7.1.0",
"rollup": "^3.29.2",
"run-z": "^1.11.1",
"sass": "^1.67.0",
"shx": "^0.3.4",
"ts-jest": "^29.1.1",
"tslib": "^2.6.2",
"typescript": "~5.2.2",
"vite": "^2.9.16",
"vite-plugin-html": "^2.1.2"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"jquery",
"popper.js"
]
}
},
"scripts": {
"all": "run-z +z build,lint,test",
"build": "run-z +z --then vite build",
"ci:all": "run-z all +test/--ci/--runInBand",
"clean": "run-z +z --then shx rm -rf dist target",
"dev": "vite",
"format": "run-z +z --then prettier-eslint --write --include-dot-files \"src/**/*.*\" \"*.{js,cjs,json,md}\"",
"lint": "run-z +z --then eslint .",
"site:publish": "run-z +z all --then gh-pages --dist dist --dotfiles",
"start": "run-z +z build --then node ./build/server.js",
"test": "run-z +z env:NODE_OPTIONS=\"--experimental-vm-modules --no-warnings\" --then jest",
"z": "run-z +cmd:vite,+cmd:eslint,+cmd:jest"
}
}