-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.48 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "coda-mover",
"description": "Coda contents migration made simple",
"version": "2.1.5",
"license": "MIT",
"private": true,
"scripts": {
"dev": "tsup --env.ELECTRON_IS_DEV=1 && electron dist/electron",
"build:next": "NODE_ENV=production next build",
"build:electron": "tsup --env.NODE_ENV=production",
"build": "pnpm build:next && pnpm build:electron",
"dist": "pnpm build && electron-builder",
"lint": "eslint . --ext js --ext ts --ext tsx",
"changeset": "changeset",
"release": "electron-builder"
},
"dependencies": {
"@abxvn/tasks": "^1.2.0",
"app-root-path": "^3.1.0",
"axios": "^1.6.7",
"electron-log": "^5.1.1",
"form-data": "^4.0.0",
"fs-extra": "^11.2.0",
"portfinder": "^1.0.32",
"socket.io": "^4.7.4"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.11.20",
"@types/react": "^18.2.59",
"@types/react-dom": "^18.2.19",
"autoprefixer": "^10.4.17",
"classnames": "^2.5.1",
"concurrently": "^8.2.2",
"electron": "^28.2.4",
"electron-builder": "^24.12.0",
"electron-reload": "2.0.0-alpha.1",
"eslint": "^8.57.0",
"eslint-config-next": "^14.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-jsx": "^11.0.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"next": "^14.1.0",
"postcss": "^8.4.35",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rippleui": "^1.12.1",
"sass": "^1.71.1",
"sharp": "^0.33.2",
"socket.io-client": "^4.7.4",
"tailwindcss": "^3.4.1",
"tsup": "^8.0.2",
"typescript": "^5.3.3"
},
"main": "dist/electron/index.js",
"homepage": "https://github.com/CoderPush/coda-mover",
"repository": {
"type": "git",
"url": "git@github.com:CoderPush/coda-mover.git"
},
"build": {
"appId": "com.coderpush.codamover",
"productName": "CodaMover",
"copyright": "Copyright © 2024 CoderPush",
"asar": true,
"directories": {
"buildResources": "electron/resources"
},
"files": [
"dist/electron",
"dist/next"
],
"mac": {
"target": [
"dmg",
"zip"
]
},
"dmg": {
"sign": false
}
},
"author": {
"name": "hungluu",
"email": "hugh@coderpush.com"
}
}