-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.62 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
{
"name": "@blazity/postgrest-builder",
"version": "0.0.1",
"description": "Query Builder for Postgrest",
"license": "MIT",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"homepage": "https://blazity.com/",
"files": [
"build/src"
],
"keywords": [
"postgrest",
"postgresql",
"query",
"builder",
"orm",
"blazity"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "concurrently \"tsc --watch --p tsconfig.lib.json\" \"tsc --watch --p tsconfig.examples.json\"",
"watch": "nodemon ./build/examples/index.js",
"build:ci": "tsc --p tsconfig.lib.json && tsc --p tsconfig.examples.json",
"build": "tsc --p tsconfig.lib.json",
"lint": "eslint \"src/**\" --ext \".js,.jsx,.ts,.tsx\"",
"lint:fix": "npm run lint -- --fix",
"clean": "rimraf build",
"prepublishOnly": "yarn clean && npm run build",
"test": "jest --config ./jest.config.js"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^14.14.10",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"axios": "^0.24.0",
"c8": "^7.10.0",
"concurrently": "^6.2.1",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.2.0",
"jest": "^27.4.3",
"jest-cli": "^27.4.3",
"nodemon": "^2.0.12",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.7",
"typescript": "^4.1.2"
},
"dependencies": {},
"peerDependencies": {
"axios": "^0.24.0"
}
}