-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.66 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
{
"name": "my-pocket",
"version": "0.0.0",
"description": "Easy to use money wallet",
"private": true,
"scripts": {
"gen": "cargo check && cargo test && cargo run --bin schema && cargo run --bin export_bindings && pnpm --filter types build && echo done",
"db": "docker compose up -d db",
"prepare": "husky install",
"dev": "cross-env RUST_ENV=dev cargo run & pnpm -F ui -F frontend --parallel dev",
"// manual deployment": "",
"do-deploy:get": "doctl apps spec get 534d04f5-74df-4f8d-a5fd-de38c2c06790 > do_app_spec.yaml",
"do-deploy:upload": "doctl apps update 534d04f5-74df-4f8d-a5fd-de38c2c06790 --spec do_app_spec.yaml"
},
"devDependencies": {
"@playwright/test": "^1.34.3",
"husky": "^8.0.3",
"prettier": "latest",
"turbo": "latest",
"wait-on": "7.0.1"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": "eslint --fix",
"**/*": "prettier --write --ignore-unknown"
},
"engines": {
"node": ">=14.0.0",
"pnpm": ">=8.6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/karambarakat/MoneyTracker.git"
},
"author": "Karam Barakat",
"license": "MIT",
"bugs": {
"url": "https://github.com/karambarakat/MoneyTracker/issues"
},
"homepage": "https://github.com/karambarakat/MoneyTracker#readme",
"packageManager": "[email protected]",
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]",
"@types/[email protected]": "patches/@[email protected]",
"[email protected]": "patches/[email protected]"
}
},
"dependencies": {
"playwright": "^1.35.1",
"cross-env": "^7.0.3"
}
}