-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
98 lines (98 loc) · 2.33 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": "sgrud-realworld-example-app",
"homepage": "https://github.com/sgrud/realworld",
"license": "MIT",
"private": true,
"main": "./realworld/.",
"author": {
"name": "Codeschluss GbR",
"email": "[email protected]",
"url": "https://www.codeschluss.de"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/sgrud/realworld/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/sgrud/realworld"
},
"scripts": {
"build": "sgrud construct",
"postbuild": "sgrud postbuild",
"start": "sgrud universal ./realworld/index.html",
"test": "eslint ./ && jest"
},
"sgrud": {
"construct": [
"./packages/core",
"./packages/eager",
"./packages/lazy"
],
"postbuild": [
"./packages/core",
"./packages/eager",
"./packages/lazy"
],
"resources": [
"./node_modules/@sgrud/bus/worker",
"./node_modules/@sgrud/state/worker/.",
"./resources/."
]
},
"dependencies": {
"@babel/runtime": "7.23.6",
"@sgrud/bus": "latest",
"@sgrud/core": "latest",
"@sgrud/shell": "latest",
"@sgrud/state": "latest",
"marked": "11.1.0",
"rxjs": "7.8.1",
"tslib": "2.6.2"
},
"devDependencies": {
"@sgrud/bin": "latest",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/marked": "5.0.2",
"@typescript-eslint/eslint-plugin": "6.14.0",
"@typescript-eslint/parser": "6.14.0",
"eslint": "8.55.0",
"eslint-plugin-tsdoc": "0.2.17",
"express": "^4.18.2",
"jest": "^29.7.0",
"puppeteer-core": "^21.6.0",
"ts-jest": "^29.1.1"
},
"sgrudDependencies": {
"sgrud-realworld-core": "./realworld/core",
"sgrud-realworld-eager": "./realworld/eager",
"sgrud-realworld-lazy": "./realworld/lazy"
},
"eslintConfig": {
"extends": "@sgrud/eslint-config",
"parserOptions": {
"project": [
"./tsconfig.json",
"./unittests/tsconfig.json"
]
},
"rules": {
"@typescript-eslint/no-unnecessary-type-assertion": "off",
"@typescript-eslint/prefer-readonly": "off"
}
},
"jest": {
"roots": [
"<rootDir>/unittests"
],
"transform": {
"^.+\\.tsx?$": [
"ts-jest",
{
"tsconfig": "<rootDir>/unittests/tsconfig.json"
}
]
}
}
}