-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.43 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.43 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
{
"name": "@credopass-nx/source",
"version": "0.0.0",
"license": "MIT",
"type": "module",
"scripts": {
"start": "NODE_ENV=development nx run-many -t serve start -p web coreservice",
"client": "NODE_ENV=development nx serve web",
"reinstall": "./tools/nm-reset.sh && bun install",
"docker:dev": "docker compose -f docker/docker-compose.dev.yml up -d postgres",
"docker:dev:down": "docker compose -f docker/docker-compose.dev.yml down",
"docker:dev:build": "docker compose -f docker/docker-compose.dev.yml --profile services up --build -d"
},
"private": true,
"devDependencies": {
"@eslint/js": "^9.39.2",
"@expo/cli": "~54.0.16",
"@nx/eslint": "^22.3.3",
"@nx/expo": "22.3.3",
"@nx/js": "22.3.3",
"@nx/react": "22.3.3",
"@nx/vite": "22.3.3",
"@nx/vitest": "22.3.3",
"@nx/web": "22.3.3",
"@swc-node/register": "~1.9.1",
"@swc/cli": "~0.6.0",
"@swc/core": "~1.5.7",
"@swc/helpers": "~0.5.11",
"@tailwindcss/vite": "^4.1.18",
"@testing-library/dom": "10.4.0",
"@testing-library/react": "16.3.0",
"@types/lodash": "^4.17.23",
"@types/node": "20.19.9",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"@vitest/coverage-v8": "^4.0.0",
"@vitest/ui": "^4.0.0",
"babel-plugin-react-compiler": "^1.0.0",
"babel-preset-expo": "~54.0.7",
"eslint": "^9.39.2",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.1",
"eslint-plugin-react": "7.35.0",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^17.0.0",
"jiti": "2.4.2",
"jsdom": "~22.1.0",
"metro-config": "~0.83.0",
"metro-resolver": "~0.83.0",
"nx": "22.3.3",
"prettier": "~3.6.2",
"tailwindcss": "^4.1.18",
"tslib": "^2.3.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.52.0",
"vite": "npm:rolldown-vite@7.3.0",
"vite-tsconfig-paths": "^6.0.3",
"vitest": "^4.0.0"
},
"workspaces": [
"packages/*",
"apps/*",
"services/*"
],
"dependencies": {
"@expo/metro-config": "~54.0.9",
"@expo/metro-runtime": "~6.1.2",
"expo": "~54.0.0",
"expo-splash-screen": "~31.0.11",
"expo-status-bar": "~3.0.8",
"expo-system-ui": "~6.0.8",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-native": "0.81.5",
"react-native-svg": "15.12.1",
"react-native-svg-transformer": "~1.5.1",
"react-native-web": "~0.21.0"
}
}