This repository was archived by the owner on Oct 15, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.45 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.45 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
{
"name": "@furystack/onboard-root",
"version": "0.0.1",
"main": "dist/index.js",
"author": "Gallay Lajos",
"license": "ISC",
"private": true,
"scripts": {
"build": "tsc -b && yarn workspace @furystack/onboard-app-frontend build",
"lint": "eslint . --ext .tsx,.ts --cache",
"clean": "rimraf */dist tsconfig.tsbuildinfo */tsconfig.tsbuildinfo",
"test": "jest"
},
"workspaces": {
"packages": [
"app",
"app-frontend",
"cli",
"common"
]
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^32.3.3",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"jest-junit": "^12.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"typescript": "^4.2.4"
},
"jest-junit": {
"suiteName": "Onboard Jest tests",
"outputDirectory": "./coverage"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --ext .tsx,.ts --cache --fix",
"prettier --write",
"git add"
],
"*.{js,jsx}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@types/jest": "^26.0.23",
"tslib": "^2.2.0"
}
}