-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
61 lines (61 loc) · 1.66 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
60
61
{
"name": "next-rpc",
"version": "3.7.0",
"description": "Call serverside code from the browser in Next.js applications",
"main": "index.js",
"repository": "https://github.com/Janpot/next-rpc",
"author": "Jan Potoms",
"license": "MIT",
"files": [
"dist/*",
"index.js",
"index.d.ts",
"context.js",
"context.d.ts"
],
"devDependencies": {
"@swc/core": "^1.2.111",
"@swc/jest": "^0.2.5",
"@types/babel__core": "^7.1.14",
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"@types/puppeteer": "^7.0.4",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@types/webpack": "^5.28.0",
"execa": "^6.0.0",
"get-port": "^6.0.0",
"jest": "^29.3.1",
"jest-circus": "^29.3.1",
"next": "^13.1.1",
"next.js": "^1.0.3",
"node-fetch": "^3.1.0",
"prettier": "^2.2.1",
"puppeteer": "19.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"strip-ansi": "^7.0.1",
"typescript": "^4.5.2"
},
"scripts": {
"prettier": "prettier --check \"**/*.{js,ts,jsx,tsx,json,yml,md}\"",
"lint": "$npm_execpath run prettier",
"jest": "jest --runInBand",
"test": "$npm_execpath run lint && $npm_execpath run jest",
"fix": "$npm_execpath run prettier -- --write",
"next": "next",
"prepublishOnly": "$npm_execpath run build && $npm_execpath run test",
"build": "tsc",
"dev": "tsc --watch"
},
"peerDependencies": {
"next": ">=10"
},
"dependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-syntax-jsx": "^7.16.0",
"@babel/plugin-syntax-typescript": "^7.16.0",
"babel-loader": "^9.1.0",
"regenerator-runtime": "^0.13.9"
}
}