-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.13 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 2.13 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
{
"name": "voltra-monorepo",
"private": true,
"packageManager": "npm@10.8.2",
"workspaces": [
"packages/*",
"example"
],
"scripts": {
"build": "npm run build --workspace voltra",
"build:all": "turbo run build",
"build:plugin": "npm run build --workspace @use-voltra/expo-plugin",
"clean": "turbo run clean",
"clean:plugin": "npm run clean --workspace @use-voltra/expo-plugin",
"format:check": "npm run format:check --workspace voltra",
"format:fix": "npm run format:fix --workspace voltra",
"format:js:check": "prettier --check .",
"format:js:fix": "prettier --write .",
"format:kotlin:check": "npm run format:kotlin:check --workspace voltra",
"format:kotlin:fix": "npm run format:kotlin:fix --workspace voltra",
"format:swift:check": "npm run format:swift:check --workspace voltra",
"format:swift:fix": "npm run format:swift:fix --workspace voltra",
"lint": "turbo run lint",
"lint:libOnly": "npm run lint",
"lint:fix": "npm run lint:fix --workspace voltra",
"test": "npm run test --workspace voltra",
"test:js": "npm run test:js --workspace voltra",
"test:kotlin": "npm run test:kotlin --workspace voltra",
"test:swift": "npm run test:swift --workspace voltra",
"test:native": "npm run test:native --workspace voltra",
"test:all": "npm run test:all --workspace voltra",
"typecheck": "turbo run typecheck",
"generate": "ts-node generator/generate-types.ts",
"harness:ios": "npm run harness:ios --workspace voltra-example",
"harness:android": "npm run harness:android --workspace voltra-example",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@types/node": "^20.19.25",
"@types/react": "~19.0.0",
"@types/react-is": "^19.2.0",
"ajv": "^8.12.0",
"expo-module-scripts": "^4.1.10",
"oxlint": "^1.16.0",
"prettier": "2.8.8",
"react": "19.0.0",
"ts-node": "^10.9.0",
"turbo": "^2.8.3"
},
"overrides": {
"react": "19.0.0",
"react-dom": "19.0.0",
"react-test-renderer": "19.0.0"
}
}