-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.02 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.02 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
{
"name": "root",
"private": true,
"version": "0.0.3",
"workspaces": [
"packages/*"
],
"prettier": {
"semi": false,
"trailingComma": "all",
"singleQuote": true,
"printWidth": 120,
"tabWidth": 2
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format:fix": "prettier --write .",
"format:check": "prettier --check .",
"clean": "npm run clean -ws",
"test": "npm run test -ws",
"build": "npm run build -ws",
"publish": "npm run publish -ws"
},
"devDependencies": {
"@monorepo-utils/workspaces-to-typescript-project-references": "^2.7.6",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^27.5.1",
"npm-check-updates": "^12.5.8",
"prettier": "^2.6.2",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3",
"workspace-tools": "^0.18.4",
"zx": "^6.0.7"
}
}