-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.52 KB
/
package.json
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
{
"name": "loar",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/dixdiydiz/loar.git"
},
"bugs": {
"url": "https://github.com/dixdiydiz/loar/issues"
},
"homepage": "https://github.com/dixdiydiz/loar#readme",
"workspaces": [
"./packages/*",
"./playground/*",
"./playground"
],
"scripts": {
"prepare": "husky install",
"test-serve": "jest",
"test-build": "cross-env TEST_PRAYGROUND=1 jest --detectOpenHandles",
"fix": "eslint --fix",
"check-updates": "npm exec --workspaces -- npx npm-check-updates --target minor -u"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@tsconfig/node14": "^1.0.1",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.1",
"@types/range-parser": "^1.2.4",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.1",
"husky": "^7.0.1",
"jest": "^27.0.6",
"jest-playwright-preset": "^1.7.0",
"lint-staged": "^11.1.2",
"playwright": "^1.15.0",
"prettier": "^2.3.2",
"sirv": "^1.0.17",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"engines": {
"node": ">=14",
"npm": ">=7"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.ts": "eslint --cache --fix"
},
"dependencies": {
"-": "^0.0.1"
}
}