-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.38 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.38 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
{
"name": "@brewskey/js-api",
"version": "2.1.4",
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Brewskey/brewskey.js-api.git"
},
"author": "Brewskey",
"files": [
"dist/"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"lint": "eslint src/ --fix --max-warnings 0",
"test": "jest",
"test:watch": "jest --watch",
"test:api": "babel-node ./test/index.js"
},
"devDependencies": {
"@types/odata": "^1.0.3",
"@types/qs": "^6.9.14",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.2.5"
},
"dependencies": {
"@playwright/mcp": "^0.0.56",
"array-flatten": "^3.0.0",
"debounce": "^1.2.0",
"nullthrows": "^1.1.0",
"odata": "github:Brewskey/o.js",
"qs": "^6.10.3",
"react-native-signalr": "github:Brewskey/react-native-signalr"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,json}": [
"prettier --write",
"eslint --fix --max-warnings 0",
"git add"
]
}
}