-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
142 lines (142 loc) · 5.17 KB
/
package.json
File metadata and controls
142 lines (142 loc) · 5.17 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "@dominion-assistant/source",
"version": "0.4.1",
"license": "MIT",
"scripts": {
"start": "nx serve",
"build": "nx build",
"build:clean": "yarn clean && yarn build",
"test:jest": "nx test",
"test:jest:upload-codacy": "./generate-upload-coverage.sh",
"test:jest:single": "npx nx test dominion-assistant --coverage=false --testPathPattern",
"test:playwright": "npx nx run e2e:e2e",
"test:playwright:report": "yarn playwright show-report --host 0.0.0.0 dist/.playwright/e2e/playwright-report",
"lint:eslint": "eslint .",
"lint:eslint:fix": "eslint . --fix",
"lint:prettier:fix": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"playwright:install": "npx playwright install --with-deps",
"reset": "./reset.sh",
"clean": "rm -rf dist coverage",
"cap:nx-build": "node scripts/nx-compatible-capacitor.js",
"cap:init": "npx cap init DominionAssistant com.digitaldefiance.dominionassistant",
"cap:add:android": "npx cap add android",
"cap:add:ios": "npx cap add ios",
"cap:copy:web": "npx cap copy",
"cap:update:native": "npx cap update",
"cap:open:android": "npx cap open android",
"cap:open:ios": "npx cap open ios",
"cap:clean": "node scripts/capacitor-clean.js",
"cap:build": "NODE_ENV=production nx build --configuration=capacitor && npx cap sync",
"cap:remove-debug": "node scripts/remove-debug-overlay.js",
"keytool:list": "keytool -list -v -keystore android/dominion-assistant.keystore -alias dominion",
"cap:release:assemble": "cd android && ./gradlew assembleRelease",
"cap:release:bundle": "cd android && ./gradlew bundleRelease",
"cap:sync": "npx cap copy",
"keytool:newkey": "keytool -genkey -v -keystore ./android/dominion-assistant.keystore -alias dominion -keyalg RSA -keysize 2048 -validity 10000",
"jre:install": "wget https://download.oracle.com/java/21/archive/jdk-21.0.5_linux-x64_bin.deb && sudo dpkg -i jdk-21.0.5_linux-x64_bin.deb && rm jdk-21.0.5_linux-x64_bin.deb"
},
"private": true,
"dependencies": {
"@awesome.me/kit-1111eb8cf6": "^1.0.4",
"@capacitor/android": "^7.1.0",
"@capacitor/cli": "^7.1.0",
"@capacitor/core": "^7.1.0",
"@capacitor/ios": "^7.1.0",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@fortawesome/fontawesome-common-types": "^6.6.0",
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/pro-solid-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"@mui/icons-material": "^6.1.3",
"@mui/material": "^6.1.3",
"chart.js": "^4.4.5",
"formik": "^2.4.6",
"highlight.js": "^11.10.0",
"module-alias": "^2.2.3",
"react": "18.3.1",
"react-chartjs-2": "^5.2.0",
"react-color": "^2.19.3",
"react-dom": "18.3.1",
"react-router-dom": "^6.27.0",
"react-virtualized": "^9.22.5",
"react-window": "^1.8.10",
"semver": "^7.6.3",
"uuid": "^10.0.0",
"yup": "^1.6.1"
},
"devDependencies": {
"@babel/core": "^7.14.5",
"@babel/preset-env": "^7.24.1",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@eslint/js": "^9.8.0",
"@faker-js/faker": "^9.0.3",
"@nx/cypress": "21.6.3",
"@nx/devkit": "21.6.3",
"@nx/eslint": "21.6.3",
"@nx/eslint-plugin": "21.6.3",
"@nx/jest": "21.6.3",
"@nx/js": "21.6.3",
"@nx/playwright": "21.6.3",
"@nx/react": "21.6.3",
"@nx/web": "21.6.3",
"@nx/webpack": "21.6.3",
"@nx/workspace": "21.6.3",
"@playwright/test": "^1.36.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"@svgr/webpack": "^8.0.1",
"@swc-node/register": "~1.9.1",
"@swc/cli": "0.6.0",
"@swc/core": "~1.5.7",
"@swc/helpers": "~0.5.11",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "30.0.0",
"@types/node": "18.16.9",
"@types/react": "^18.3.11",
"@types/react-color": "^3.0.12",
"@types/react-dom": "18.3.0",
"@types/react-virtualized": "^9.21.30",
"@types/react-window": "^1.8.8",
"@types/uuid": "^10.0.0",
"babel-jest": "30.0.5",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.0.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "10.0.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.1",
"eslint-plugin-playwright": "^1.6.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "5.0.0",
"html-webpack-plugin": "^5.6.0",
"jest": "30.0.5",
"jest-environment-jsdom": "30.0.5",
"jest-localstorage-mock": "^2.4.26",
"jest-playwright-preset": "^4.0.0",
"jest-util": "30.0.5",
"nx": "21.6.3",
"prettier": "^3.3.3",
"react-refresh": "^0.10.0",
"style-loader": "^3.3.4",
"ts-jest": "29.4.4",
"ts-node": "10.9.1",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.3.0",
"typescript": "5.9.3",
"typescript-eslint": "8.40.0",
"webpack-cli": "^5.1.4"
},
"nx": {
"includedScripts": []
},
"_moduleAliases": {
"@": "dist/out-tsc/src"
},
"packageManager": "yarn@4.10.3"
}