-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.31 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
{
"name": "das-dui",
"version": "0.0.1",
"repository": {
"url": "https://github.com/Florian325/das-dui"
},
"author": {
"name": "Florian325"
},
"packageManager": "yarn@4.1.1",
"license": "GPL-3.0-only",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"format:prettier:check": "prettier . --check --ignore-path ./.prettierignore.workspace",
"format:prettier:fix": "prettier . --write --ignore-path ./.prettierignore.workspace",
"worksapces:format:check": "yarn workspaces foreach -Ap run format:prettier:check",
"worksapces:format:fix": "yarn workspaces foreach -Ap run format:prettier:fix",
"worksapces:lint:check": "yarn workspaces foreach -Ap run lint:eslint:check",
"worksapces:lint:fix": "yarn workspaces foreach -Ap run lint:eslint:fix",
"workspaces:tsc:test": "yarn workspaces foreach -Ap run tsc:test",
"app:dev": "yarn workspace das-dui-tool start",
"app:android:build": "yarn workspace das-dui-tool android:build"
},
"private": true,
"dependencies": {
"axios": "^1.6.8"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.34.1",
"prettier": "3.2.5",
"typescript": "^5.4.4"
}
}