-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.58 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": "magic-rpc",
"version": "0.0.18",
"description": "",
"main": "lib/index.js",
"files": [
"lib/**/*"
],
"scripts": {
"test": "jest --config jest.config.js",
"test:watch": "npm run test -- --watch",
"test:debug": "npm run test -- --runInBand",
"build": "tsc --noEmitOnError",
"format": "prettier --write \"src/**/*.{json,js,jsx,ts,tsx}\"",
"lint": "eslint . --ext .ts && tsc --noEmit",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abhayvatsa/magic-rpc.git"
},
"keywords": [
"typescript",
"strongly-typed",
"api",
"rpc"
],
"author": "Abhay Vatsa",
"license": "MIT",
"bugs": {
"url": "https://github.com/abhayvatsa/magic-rpc/issues"
},
"homepage": "https://github.com/abhayvatsa/magic-rpc#readme",
"devDependencies": {
"@types/express": "^4.17.11",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"conditional-type-checks": "^1.0.5",
"cross-fetch": "^3.1.4",
"eslint": "^7.26.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.6",
"typescript": "^4.2.4"
},
"dependencies": {
"@types/react": "^17.0.5",
"@types/react-dom": "^17.0.5",
"express": "^4.17.1",
"next": "^10.2.0",
"tiny-invariant": "^1.1.0",
"ts-results": "^3.2.1"
}
}