-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.6 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "next-static-context",
"packageManager": "[email protected]",
"version": "1.0.1",
"license": "MIT",
"author": {
"name": "The NewsGuild of New York",
"url": "https://nyguild.org"
},
"homepage": "https://github.com/newsguildny/next-static-context/-/blob/main/README.md",
"bugs": {
"url": "https://github.com/newsguildny/next-static-context/-/issues"
},
"repository": {
"type": "git",
"url": "github:newsguildny/next-static-context"
},
"files": [
"lib",
"app",
"config"
],
"main": "lib/index.js",
"scripts": {
"build": "babel src --extensions .ts,.tsx --ignore \"src/**/__tests__/**/*\" --out-dir lib && tsc",
"lint": "eslint",
"prepublishOnly": "yarn build && pinst --disable",
"typecheck": "tsc --noEmit --emitDeclarationsOnly false",
"test": "jest",
"postinstall": "husky install",
"postpublish": "pinst --enable",
"publish": "yarn prepublishOnly && yarn npm publish && yarn postpublish"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.15.0",
"@babel/eslint-parser": "^7.15.0",
"@babel/eslint-plugin": "^7.14.5",
"@babel/generator": "^7.16.8",
"@babel/preset-env": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@types/babel__core": "^7.1.15",
"@types/babel__generator": "^7.6.4",
"@types/babel__traverse": "^7.14.2",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.6",
"@types/react": "^17.0.30",
"@types/webpack-env": "^1.16.3",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"@yarnpkg/sdks": "^2.4.2-rc.1",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-kyt": "^1.6.2",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-jest-formatting": "^3.0.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.25.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": ">=6",
"jest": "^27.1.0",
"lint-staged": ">=10",
"next": "^12.0.10",
"pinst": ">=2",
"prettier": "^2.3.2",
"react": "^17.0.2",
"source-map": "^0.7.3",
"typescript": "4.3.5",
"webpack": "^5.52.0"
},
"peerDependencies": {
"@babel/core": "^7.15.0",
"react": ">=16.0.0",
"webpack": "^5.0.0"
},
"dependencies": {
"@babel/parser": "^7.15.8",
"@babel/preset-react": "^7.16.7",
"@babel/traverse": "^7.15.4",
"babel-loader": "^8.2.2"
}
}