-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 1.86 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
{
"name": "siera-desktop",
"repository": {
"type": "git",
"url": "https://github.com/animo/siera-desktop"
},
"author": {
"url": "https://animo.id",
"name": "Animo Solutions",
"email": "contact@animo.id"
},
"private": "true",
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/electron",
"**/electron/**",
"**/indy-sdk",
"**/indy-sdk/**"
]
},
"scripts": {
"postinstall": "(cd packages/siera-desktop && patch-package) && patch-package",
"check-types": "yarn check-types:build && yarn check-types:tests",
"check-types:tests": "tsc -p tsconfig.test.json --noEmit",
"check-types:build": "yarn workspaces run tsc --noEmit -p tsconfig.build.json",
"prettier": "prettier '**/*.+(js|json|ts|md|yml|yaml|tsx)'",
"format": "yarn prettier --write",
"check-format": "yarn prettier --list-different",
"lint": "eslint --ignore-path .gitignore .",
"test": "jest",
"validate": "yarn lint && yarn check-types",
"build": "yarn workspaces run build",
"start": "yarn workspace @animo/siera-desktop run start"
},
"devDependencies": {
"@types/eslint": "^8.2.1",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.10",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"eslint": "^8.4.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^27.0.4",
"patch-package": "^6.4.7",
"prettier": "^2.3.1",
"ts-jest": "^27.0.3",
"ts-node": "^10.2.1",
"tsconfig-paths": "^3.9.0",
"typescript": "~4.4.0"
},
"resolutions": {
"abort-controller": "npm:native-abort-controller@latest"
}
}