-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.49 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.49 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
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
{
"name": "@nerest/nerest",
"version": "0.0.0-stub",
"description": "React micro frontend framework",
"homepage": "https://github.com/nerestjs/nerest",
"repository": {
"type": "git",
"url": "https://github.com/nerestjs/nerest.git"
},
"license": "Apache-2.0",
"type": "module",
"bin": {
"nerest": "dist/bin/index.js"
},
"files": [
"/dist",
"/bin",
"/build",
"/client",
"/schemas",
"/server",
"/README.md",
"/LICENSE.md"
],
"scripts": {
"build": "tsc -p tsconfig.json -d",
"lint": "eslint --ext .ts .",
"prepare": "simple-git-hooks",
"test": "npm run test:module && npm run test:integration:dev && npm run test:integration:prod",
"test:integration:dev": "sh tests/integration/run.development.sh",
"test:integration:prod": "sh tests/integration/run.production.sh",
"test:module": "vitest run tests/module/**",
"typegen": "json2ts -i 'schemas/**/*.json' -o schemas --bannerComment ''"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "npx commitlint --edit ${1}"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
],
"package.json": [
"sort-package-json"
]
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^15.3.5",
"@fastify/middie": "^9.3.1",
"@fastify/static": "^9.1.0",
"@fastify/swagger": "^9.7.0",
"@fastify/swagger-ui": "^5.2.5",
"@vitejs/plugin-react": "^6.0.1",
"ajv": "^8.18.0",
"ajv-formats": "^3.0.1",
"dotenv": "^17.4.1",
"fast-glob": "^3.3.3",
"fast-uri": "^3.1.0",
"fastify": "^5.8.4",
"fastify-graceful-shutdown": "^5.0.0",
"json-schema-to-typescript": "^15.0.4",
"vite": "^8.0.7",
"vite-plugin-externals": "^0.6.2"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@playwright/test": "^1.59.1",
"@tinkoff/eslint-config": "^5.2.0",
"@tinkoff/eslint-config-react": "^5.2.0",
"@tinkoff/prettier-config": "^5.0.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"lint-staged": "^16.4.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"simple-git-hooks": "^2.13.1",
"sort-package-json": "^3.6.1",
"typescript": "^6.0.2",
"vitest": "^4.1.4"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"engines": {
"node": ">=v20.19.0"
}
}