-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.58 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
{
"name": "@zmaj-js/monorepo",
"license": "MIT",
"version": "0.3.0",
"author": "Aleksandar Stanisic <[email protected]>",
"private": true,
"publishConfig": {
"access": "public"
},
"scripts": {
"preinstall": "npx -y only-allow pnpm",
"format": "prettier -wl --ignore-unknown .",
"lint": "turbo run lint --cache-dir=turbo-cache --filter=./packages/*",
"tsc": "turbo run tsc --cache-dir=turbo-cache --filter=./packages/*",
"build": "turbo run build --cache-dir=turbo-cache --filter=./packages/*",
"test-unit": "vitest run",
"test-e2e-api": "npx turbo test-e2e-api",
"test-e2e-gui": "pnpm --filter '@zmaj-js/e2e-tests' test-gui",
"test-packaging": "pnpm --filter '@zmaj-js/e2e-packaging' test-packaging",
"dev": "npx mprocs",
"bump-version": "lerna version --sync-workspace-lock",
"publish-packages": "pnpm publish --r --access=public",
"start-docker-project": "pnpm --filter=@zmaj-js/dockerfile run start",
"prepare": "husky install"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"devDependencies": {
"@faker-js/faker": "^8.2.0",
"@lerna-lite/cli": "^2.6.0",
"@swc-node/register": "^1.6.8",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.93",
"@tsconfig/node-lts-strictest-esm": "^18.12.1",
"@types/fs-extra": "^11.0.2",
"@types/node": "^18.15.11",
"@types/supertest": "^2.0.14",
"@types/uuid": "^9.0.5",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"@vitejs/plugin-react-swc": "^3.4.0",
"@vitest/ui": "^0.34.6",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^3.0.0",
"execa": "^7.1.1",
"fs-extra": "^11.1.1",
"get-port": "5.1.1",
"lint-staged": "^15.0.1",
"mprocs": "^0.6.4",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.6",
"rimraf": "^5.0.5",
"supertest": "^6.3.3",
"tsup": "^7.2.0",
"turbo": "^1.10.15",
"typescript": "^5.2.2",
"unplugin-swc": "^1.4.3",
"vite": "4.4.11",
"vitest": "0.34.6"
},
"workspaces": [
"packages/*",
"examples/*"
],
"homepage": "https://github.com/apstanisic/zmaj#readme",
"repository": {
"type": "git",
"url": "https://github.com/apstanisic/zmaj.git"
},
"bugs": {
"url": "https://github.com/apstanisic/zmaj/issues"
},
"dependencies": {
"@lerna-lite/version": "^2.6.0",
"husky": "^8.0.3",
"only-allow": "^1.2.1"
},
"lint-staged": {
"**/*": "prettier -wl --ignore-unknown"
}
}