-
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) · 815 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 815 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.20",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"eslint": "8.45.0",
"eslint-config-prettier": "8.10.0",
"eslint-formatter-friendly": "7.0.0",
"eslint-plugin-prettier": "5.0.0",
"jest": "27.5.1",
"lerna": "4.0.0",
"prettier": "3.0.0",
"ts-jest": "27.1.4",
"typescript": "5.0.4"
},
"scripts": {
"postinstall": "lerna bootstrap",
"test": "jest",
"format": "prettier --write \"**/*.ts\" \"!**/lib/**\"",
"lint": "eslint \"packages/**/{src,__tests__}/**/*.ts\" -f eslint-formatter-friendly",
"build": "lerna run build",
"create": "yo lerna-typescript:package"
},
"dependencies": {}
}