forked from thisisagile/easy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.76 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.76 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
{
"name": "root",
"private": true,
"scripts": {
"g:prettier": "cd $INIT_CWD && prettier",
"g:eslint": "cd $INIT_CWD && eslint",
"g:tsc": "cd $INIT_CWD && tsc -b --force",
"g:tsup": "cd $INIT_CWD && tsup --silent",
"g:jest": "cd $INIT_CWD && jest",
"g:copy-readme": "ncp README.md $INIT_CWD/README.md",
"format-all": "yarn workspaces foreach -A run format",
"lint-all": "yarn workspaces foreach -A run lint",
"build-all": "yarn workspaces foreach -Ap --topological-dev run build:tsup",
"test-all": "jest --coverage",
"test-sonarqube": "yarn workspaces foreach -A run test",
"release": "yarn build-all && release-it",
"u": "yarn upgrade-interactive && yarn dedupe"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@release-it-plugins/workspaces": "^4.2.0",
"@release-it/conventional-changelog": "9.0.4",
"@tsconfig/node-lts": "^20.1.3",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.8",
"@types/node": "^20.19.0",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"dpdm": "^3.14.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-promise": "^6.2.0",
"eslint-plugin-security": "^1.7.1",
"eslint-plugin-sonarjs": "^0.24.0",
"eslint-plugin-standard": "^5.0.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"jest-sonar-reporter": "^2.0.0",
"ncp": "^2.0.0",
"prettier": "^3.5.3",
"release-it": "17.11.0",
"ts-jest": "^29.1.4",
"tsup": "^7.2.0",
"typescript": "^5.7.3"
},
"packageManager": "yarn@4.6.0",
"dependencies": {
"jsonwebtoken": "^9.0.2",
"jwt-decode": "^4.0.0"
}
}