This repository was archived by the owner on Oct 15, 2025. It is now read-only.
generated from furystack/boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.36 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.36 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
{
"name": "furystack-boilerplate-app",
"version": "1.0.1",
"description": "example web app based on furystack",
"main": "service/src/index.ts",
"repository": "https://github.com/gallayl/fury.git",
"author": "Gallay Lajos <gallay.lajos@gmail.com>",
"license": "GPL-2.0-only",
"private": true,
"workspaces": {
"packages": [
"common",
"frontend",
"service"
],
"nohoist": []
},
"dependencies": {
"@types/jest": "^29.0.0",
"jest": "^29.0.1",
"jest-junit": "^14.0.0",
"tslib": "^2.4.0"
},
"devDependencies": {
"@furystack/security": "^2.0.8",
"@types/node": "^18.7.2",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"concurrently": "^7.3.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsdoc": "^39.3.6",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"rimraf": "^3.0.0",
"typescript": "^4.7.4"
},
"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"
]
},
"scripts": {
"build": "tsc -b && yarn workspace frontend build",
"seed": "yarn workspace service seed",
"test:e2e": "concurrently --kill-others \"yarn startService\" \"yarn startFrontend\" \"yarn workspace frontend run cypress run\" --success first ",
"test:unit": "jest --verbose",
"open:cypress": "concurrently --kill-others \"yarn startService\" \"yarn startFrontend\" \"yarn workspace frontend run cypress open\" --success first ",
"start": "concurrently --kill-others \"yarn startService\" \"yarn startFrontend\" ",
"startService": "yarn workspace service start",
"startFrontend": "yarn workspace frontend start",
"clean": "rimraf service/dist frontend/dist **/tsconfig.tsbuildinfo tsconfig.tsbuildinfo common/dist",
"lint": "eslint . --ext .tsx,.ts --cache"
},
"jest-junit": {
"suiteName": "FuryStack Jest tests",
"outputDirectory": "./coverage"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
}
}