-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.89 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
{
"name": "hpg-newspaper",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next-remote-watch ./text",
"build": "next build",
"start": "next start",
"export": "next export",
"test": "jest"
},
"dependencies": {
"@mdx-js/runtime": "^2.0.0-next.8",
"@svgr/webpack": "^6.2.1",
"isomorphic-fetch": "^3.0.0",
"jest": "^28.1.0",
"js-yaml": "^4.1.0",
"next": "^12.1.6",
"next-pwa": "^5.5.2",
"next-seo": "^5.4.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-modal": "^3.15.1",
"styled-components": "^5.3.5"
},
"devDependencies": {
"@types/gtag.js": "^0.0.10",
"@types/isomorphic-fetch": "^0.0.36",
"@types/jest": "^27.5.1",
"@types/js-yaml": "^4.0.5",
"@types/node": "^17.0.34",
"@types/react": "^18.0.9",
"@types/react-modal": "^3.13.1",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"eslint": "^8.15.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"next-remote-watch": "^1.0.0",
"prettier": "^2.6.2",
"terser-webpack-plugin": "^5.3.1",
"typescript": "^4.6.4"
},
"eslintConfig": {
"env": {
"browser": true,
"jest": true
},
"parserOptions": {
"project": "./tsconfig.json"
},
"extends": [
"airbnb-typescript",
"airbnb/hooks",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"prettier"
],
"rules": {
"react/react-in-jsx-scope": "off",
"react/require-default-props": "off",
"react/jsx-props-no-spreading": "off",
"@typescript-eslint/explicit-module-boundary-types": "off"
}
}
}