-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 2.09 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
{
"name": "NewFinance",
"version": "0.1.0",
"private": true,
"workspaces": {
"packages": [
"apps/*",
"packages/*",
"packages/react-native/*",
"packages/config/*"
],
"nohoist": [
"**/@expo",
"**/@expo/**",
"**/expo",
"**/expo/**",
"**/react-native",
"**/react-native/**",
"**/@react-native",
"**/@react-native/**",
"**/nativewind",
"**/react",
"**/zustand",
"**/@tanstack/react-query"
]
},
"scripts": {
"ci": "turbo lint build test",
"test": "turbo test",
"build": "turbo build",
"lint": "turbo lint",
"dev": "dotenv -- turbo dev --parallel --no-cache",
"reset": "rm -f yarn.lock && git clean -xdf",
"prep": "yarn install && yarn db:start && yarn pod-install && husky install && yarn db:push",
"mobile": "dotenv -- yarn workspace @superlight-labs/mobile dev",
"db:start": "dotenv -- yarn workspace @superlight-labs/database start",
"db:push": "dotenv -- yarn workspace @superlight-labs/database run db:push",
"db:reset": "dotenv -- yarn workspace @superlight-labs/database run db:reset",
"db:studio": "dotenv -- yarn workspace @superlight-labs/database run studio",
"pod-install": "yarn workspace @superlight-labs/mobile run postinstall"
},
"description": "MPC Crypto App with Banking UX. Fair, secure, elegant",
"main": "index.js",
"repository": "https://github.com/Superlight-Labs/NewFinance.git",
"author": "Laurenz Honauer <[email protected]>",
"license": "AGPL-3.0",
"volta": {
"node": "18.12.0",
"yarn": "1.22.19"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@rnx-kit/metro-config": "^1.3.5",
"@rnx-kit/metro-resolver-symlinks": "^0.1.26",
"buffer": "latest",
"dotenv-cli": "^7.0.0",
"eslint": "^8.19.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"prettier": "^2.4.1",
"turbo": "^1.8.3"
},
"resolutions": {
"@types/react": "^18.0.28",
"@types/react-dom": "^18.2.0"
},
"packageManager": "[email protected]"
}