-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.35 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.35 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
84
85
{
"name": "@gfw/help-center",
"version": "1.0.1",
"engines": {
"node": "20.18.0"
},
"scripts": {
"dev": "NODE_OPTIONS=--openssl-legacy-provider next",
"build": "NODE_OPTIONS=--openssl-legacy-provider next build",
"start": "NODE_OPTIONS=--openssl-legacy-provider next start -p $PORT",
"postbuild": "NODE_OPTIONS=--openssl-legacy-provider next-sitemap"
},
"dependencies": {
"@emotion/babel-preset-css-prop": "^10.0.27",
"@emotion/core": "^10.0.35",
"@emotion/styled": "^10.0.27",
"@svgr/webpack": "^5.4.0",
"@wordpress/api-fetch": "^3.19.0",
"@worldresources/gfw-components": "^3.5.22",
"axios": "^0.20.0",
"btoa": "^1.2.1",
"buttercms": "1.2.2",
"classnames": "2.2.6",
"cookie": "^0.4.1",
"date-fns": "^2.16.1",
"emotion": "^10.0.27",
"emotion-rgba": "^0.0.8",
"emotion-server": "^10.0.27",
"husky": "^4.3.0",
"image-trace-loader": "^1.0.2",
"imagemin-mozjpeg": "^9.0.0",
"imagemin-optipng": "^8.0.0",
"isomorphic-unfetch": "3.0.0",
"lint-staged": "^10.3.0",
"lodash": "^4.17.20",
"next": "^14.2.23",
"next-sitemap": "^1.2.4",
"node-fetch": "^2.6.1",
"prop-types": "^15.7.2",
"react": "18",
"react-dom": "18",
"react-ga": "^3.1.2",
"react-stickynode": "^3.0.3",
"react-to-print": "^2.10.0",
"react-twitter-conversion-tracker": "^1.0.0",
"release": "^6.3.0",
"responsive-loader": "^2.1.1",
"simple-entity-decode": "^0.0.3",
"webp-loader": "^0.6.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"babel-plugin-emotion": "^10.0.33",
"eslint": "^7.8.1",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-next": "^14.2.23",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.1",
"postcss-flexbugs-fixes": "4.2.1",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.1.1"
},
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --parser flow --write --single-quote",
"eslint --ext .js --ext .jsx --fix"
]
},
"cacheDirectories": [
".next/cache"
],
"resolutions": {
"debug": "^2.6.9"
}
}