-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
70 lines (70 loc) · 1.67 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
62
63
64
65
66
67
68
69
70
{
"version": "0.4.5",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"tools.js"
],
"engines": {
"node": ">=10"
},
"scripts": {
"build": "tsc",
"test": "jest",
"prepare": "yarn build",
"lint": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "babel-plugin-superjson-next",
"author": "Simon Knott",
"repository": {
"type": "git",
"url": "https://github.com/blitz-js/babel-plugin-superjson-next.git"
},
"bugs": {
"url": "https://github.com/blitz-js/babel-plugin-superjson-next/issues"
},
"homepage": "https://github.com/blitz-js/babel-plugin-superjson-next#readme",
"module": "dist/babel-plugin-superjson-next.esm.js",
"devDependencies": {
"@babel/core": "^7.13.16",
"@testing-library/react-native": "^7.2.0",
"@types/hoist-non-react-statics": "^3.3.1",
"@types/jest": "^26.0.23",
"@types/react": "^17.0.4",
"all-contributors-cli": "^6.20.0",
"babel-plugin-tester": "^10.0.0",
"eslint": "^7.25.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"next": "^12.1.0",
"prettier": "^2.3.0",
"react": "^17.0.2",
"react-test-renderer": "^17.0.2",
"superjson": "^1.8.1",
"ts-jest": "^26.5.6",
"typescript": "^4.2.4"
},
"peerDependencies": {
"next": ">=9.0.0",
"superjson": "1.x"
},
"dependencies": {
"@babel/helper-module-imports": "^7.13.12",
"@babel/types": "^7.13.17",
"hoist-non-react-statics": "^3.3.2"
}
}