-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.21 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.21 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
{
"name": "ts-type-explorer",
"type": "commonjs",
"private": true,
"license": "MIT",
"scripts": {
"build": "tsc -b",
"watch": "tsc -b --watch",
"test": "mocha",
"test:vscode": "wdio run ./wdio.conf.ts",
"baseline-accept": "ts-node ./scripts/acceptBaselines.ts",
"lint": "eslint .",
"format:check": "prettier --check .",
"format": "prettier --write .",
"prepare": "husky install",
"version:bump": "lerna version --conventional-commits --skip-git",
"changelog:get": "ts-node ./scripts/changelog.ts",
"wdio": "wdio run ./wdio.conf.ts"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/material": "^5.10.13",
"@types/fs-extra": "^9.0.13",
"@types/glob": "^8.0.0",
"@types/mocha": "^10.0.0",
"@types/node": "^18.8.0",
"@types/react": "^18.0.24",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"@wdio/cli": "^8.0.15",
"@wdio/local-runner": "^8.0.15",
"@wdio/mocha-framework": "^8.0.14",
"@wdio/spec-reporter": "^8.0.14",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"fs-extra": "^10.1.0",
"glob": "^8.0.3",
"husky": "^8.0.1",
"lerna": "^5.6.2",
"lint-staged": "^13.0.3",
"mocha": "^10.0.0",
"prettier": "2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"wdio-vscode-service": "^5.0.0"
},
"resolutions": {
"@types/react": "^18.0.24"
},
"prettier": {
"tabWidth": 4,
"semi": false,
"overrides": [
{
"files": "*.yml",
"options": {
"tabWidth": 2
}
}
]
},
"lint-staged": {
"*.ts": [
"eslint",
"prettier --write --ignore-unknown"
],
"**/!(*.ts)": "prettier --write --ignore-unknown"
}
}