-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.41 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.41 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
81
{
"name": "subscription-tracker",
"version": "1.0.0",
"private": true,
"description": "SubSync desktop-packaged subscription tracker",
"author": "Evan Newman",
"main": "desktop/main.cjs",
"packageManager": "npm@10.8.1",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev:api": "set API_PORT=43100&& npm run start:dev --workspace api",
"dev:web": "set NEXT_PUBLIC_API_BASE_URL=http://127.0.0.1:43100/api&& npm run dev --workspace web",
"dev:desktop": "electron .",
"build": "npm run build --workspace @subscription-tracker/types && npm run build --workspace api && npm run build --workspace web",
"build:desktop": "npm run build && node ./desktop/prepare-dist.mjs",
"dist:desktop": "npm run build:desktop && electron-builder --win portable",
"lint": "npm run lint --workspace @subscription-tracker/types && npm run lint --workspace api && npm run lint --workspace web",
"test": "npm run test --workspace @subscription-tracker/types && npm run test --workspace api && npm run test --workspace web",
"format": "npm run format --workspace @subscription-tracker/types && npm run format --workspace api && npm run format --workspace web"
},
"dependencies": {
"@nestjs/common": "^10.0.0",
"@nestjs/core": "^10.0.0",
"@nestjs/mapped-types": "^2.1.0",
"@nestjs/platform-express": "^10.0.0",
"@nestjs/schedule": "^6.1.1",
"@prisma/client": "^5.20.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"reflect-metadata": "^0.2.0",
"rxjs": "^7.8.1",
"uuid": "^11.0.3"
},
"overrides": {
"file-type": "21.3.3",
"multer": "2.1.1"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"eslint:recommended"
],
"parserOptions": {
"ecmaVersion": 2022,
"sourceType": "module"
}
},
"prettier": {
"singleQuote": true,
"semi": true,
"trailingComma": "es5"
},
"build": {
"appId": "com.evannewman.subsync",
"productName": "SubSync",
"directories": {
"app": "desktop/app",
"output": "release"
},
"asarUnpack": [
"runtime/api/prisma/generated/client/*.node",
"runtime/api/prisma/generated/client/*.dll.node"
],
"win": {
"icon": "desktop/app/icon.ico",
"target": [
"portable"
]
}
},
"devDependencies": {
"electron": "^41.0.2",
"electron-builder": "^26.8.1"
}
}