-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.29 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.29 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
76
77
78
79
80
81
82
83
{
"name": "telecall",
"version": "2.0.5",
"description": "No more HTTP API. Call back-end NodeJS functions directly from front-end, with full Typescript typing support.",
"main": "dist/index.js",
"files": [
"dist/**",
"src/**",
"plugins/**"
],
"scripts": {
"build": "tsc --build --clean && tsc --build",
"test": "npm run build && jest",
"lint": "eslint --fix --ext .js,.jsx,.ts,.tsx,.vue --ignore-path .gitignore .",
"format": "prettier --write --ignore-path .gitignore .",
"prepare": "husky install",
"preversion": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/beeplin/telecall.git"
},
"keywords": [
"telecall",
"api",
"typescript",
"rpc",
"rollup-plugin",
"vite-plugin",
"babel-plugin"
],
"author": "Beep LIN",
"license": "MIT",
"bugs": {
"url": "https://github.com/beeplin/telecall/issues"
},
"homepage": "https://github.com/beeplin/telecall#readme",
"dependencies": {
"cookie": "^0.4.1",
"express": "^4.17.1",
"isomorphic-fetch-with-cookie": "0.0.3"
},
"devDependencies": {
"@babel/template": "^7.14.5",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@rollup/pluginutils": "^4.1.1",
"@types/cookie": "^0.4.1",
"@types/expect-puppeteer": "^4.4.6",
"@types/express": "^4.17.13",
"@types/jest": "^26.0.24",
"@types/jest-environment-puppeteer": "^4.4.1",
"@types/node": "^16.3.0",
"@types/puppeteer": "^5.4.4",
"@typescript-eslint/parser": "^4.28.4",
"esbuild": "^0.12.15",
"esbuild-jest": "^0.5.0",
"eslint": "^7.32.0",
"eslint-config-mania": "^0.1.3",
"expect-puppeteer": "^5.0.4",
"husky": "^7.0.1",
"jest": "^27.0.6",
"jest-dev-server": "^5.0.3",
"jest-environment-puppeteer": "^5.0.4",
"jest-puppeteer": "^5.0.4",
"lint-staged": "^11.0.0",
"prettier": "^2.3.2",
"puppeteer": "^10.2.0",
"rollup": "^2.54.0",
"ts-node-dev": "^1.1.8",
"tslib": "^2.3.0",
"typescript": "^4.3.5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue}": "eslint --fix",
"*.{js,jsx,ts,tsx,vue,json,yml,yaml,md,html,css,less,scss,sass,gql,graphql}": "prettier --write"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}