-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 2.02 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
{
"name": "empact",
"version": "1.2.6",
"license": "CC-BY-4.0",
"description": "Environment and Maturity Program Assessment and Control Tool",
"keywords": [
"Earned Value",
"Project Management"
],
"repository": "https://github.com/cahaseler/EMPACT",
"homepage": "https://github.com/cahaseler/EMPACT",
"bugs": "https://github.com/cahaseler/EMPACT/issues",
"author": {
"name": "cahaseler",
"url": "https://github.com/cahaseler"
},
"private": true,
"scripts": {
"install-all": "yarn install && cd web && yarn install && cd .. && yarn sync-app && cd web_static && yarn install && cd ..",
"dev": "ECHO 'Use 'yarn dev-web' to edit the frontend in browser or 'yarn dev-app' to run the tauri app in dev mode.'",
"dev-web": "cd web && yarn dev",
"dev-app": "node warning_message.js && yarn sync-app && cd src-tauri && tauri dev",
"sync-app": "Xcopy \"web/app/(frontend)\" \"web_static/app/(frontend)\" /E /I /Y && Xcopy \"web/public\" \"web_static/public\" /E /I /Y && Xcopy \"web/components\" \"web_static/components\" /E /I /Y && Xcopy \"web/lib\" \"web_static/lib\" /E /I /Y",
"sync-app-linux": "cp -rf 'web/app/(frontend)' 'web_static/app/(frontend)' && cp -rf 'web/public' 'web_static/public' && cp -rf 'web/components' 'web_static/components' && cp -rf 'web/lib' 'web_static/lib'",
"build": "next build",
"build-all": "cd web && yarn build && cd .. && yarn sync-app && cd src-tauri && tauri build",
"build-web": "cd web && yarn install && yarn build && cd ..",
"build-static": "cd web_static && yarn install && yarn build && cd ..",
"build-app": "cd src-tauri && tauri build && cd .."
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "4.3.1",
"@tauri-apps/cli": "1.6.0",
"eslint": "8.57.0",
"eslint-config-next": "14.2.5",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jsdoc": "48.11.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.35.0",
"eslint-plugin-tailwindcss": "3.17.4",
"prettier": "3.3.3"
}
}