-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.85 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
{
"name": "kmbmotors",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "xo !*.config.js",
"favicons": "gulp generateFavicons",
"webp": "gulp generateWebpsPublic"
},
"dependencies": {
"chrome-aws-lambda": "^8.0.0",
"dompurify": "^2.2.6",
"globby": "^11.0.2",
"graphql": "^15.5.0",
"graphql-request": "^3.4.0",
"medium-zoom": "^1.0.6",
"next": "10.2.3",
"next-google-fonts": "^1.2.1",
"next-pwa": "^5.0.6",
"next-themes": "^0.0.10",
"preact": "^10.5.12",
"preact-compat": "^3.19.0",
"puppeteer-core": "^8.0.0",
"react": "17.0.1",
"react-datocms": "^1.5.5",
"react-dom": "17.0.1",
"sitemap": "^6.4.0",
"url": "^0.11.0"
},
"devDependencies": {
"@svgr/webpack": "^5.5.0",
"@tailwindcss/typography": "^0.4.0",
"@types/dompurify": "^2.2.1",
"@types/node": "^14.14.25",
"@types/react": "^17.0.1",
"autoprefixer": "^10.2.4",
"babel-plugin-inline-react-svg": "^2.0.0",
"eslint-config-xo-react": "^0.23.0",
"eslint-config-xo-typescript": "^0.37.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"favicons": "^6.2.1",
"gulp": "^4.0.2",
"gulp-webp": "^4.0.1",
"next-compose-plugins": "^2.2.1",
"next-images": "^1.7.0",
"postcss": "^8.2.5",
"postcss-aspect-ratio-polyfill": "^2.0.0",
"postcss-import": "^14.0.0",
"tailwindcss": "^2.1.1",
"tailwindcss-safe-area": "^0.1.1",
"typescript": "^4.1.3",
"xo": "^0.37.1"
},
"prettier": {
"bracketSpacing": true,
"semi": false,
"singleQuote": true,
"jsxSingleQuote": true
},
"xo": {
"prettier": "true",
"extends": [
"xo-typescript",
"xo-react"
],
"rules": {
"react/react-in-jsx-scope": "off"
}
}
}