-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 821 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 821 Bytes
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
{
"name": "root",
"private": true,
"devDependencies": {
"@types/jest": "27.5.2",
"@types/node": "18.16.16",
"@typescript-eslint/eslint-plugin": "5.59.8",
"@typescript-eslint/parser": "5.59.8",
"eslint": "8.42.0",
"eslint-config-prettier": "8.8.0",
"eslint-formatter-friendly": "7.0.0",
"eslint-plugin-prettier": "4.2.1",
"jest": "27.5.1",
"jest-junit": "16.0.0",
"lerna": "6.6.2",
"prettier": "2.8.8",
"ts-jest": "27.1.5",
"typescript": "5.1.3"
},
"scripts": {
"test": "jest",
"test-ci": "jest --ci --coverage",
"format": "prettier --write \"**/*.ts\" \"!**/lib/**\"",
"lint": "eslint \"packages/**/{src,__tests__}/**/*.ts\" -f eslint-formatter-friendly",
"build": "lerna run build",
"create": "yo lerna-typescript:package"
}
}