-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.73 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
{
"name": "next-js-boilerplate",
"version": "1.0.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"build-stats": "cross-env ANALYZE=true npm run build",
"export": "next export",
"build-prod": "run-s clean build export",
"clean": "rimraf .next out",
"lint": "next lint",
"build-types": "tsc --noEmit --pretty"
},
"dependencies": {
"@formspree/react": "^2.2.4",
"@socialgouv/matomo-next": "^1.3.0",
"@stitches/react": "^1.2.5",
"gray-matter": "^4.0.3",
"i18next": "^22.4.6",
"next": "^12.3.4",
"next-i18next": "^13.0.3",
"next-mdx-remote": "^4.2.1",
"next-seo": "^4.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^12.1.1",
"rehype-highlight": "^5.0.2",
"sharp": "^0.30.5",
"stitches-reset": "^1.0.0"
},
"devDependencies": {
"@next/bundle-analyzer": "^12.0.2",
"@next/eslint-plugin-next": "^12.3.4",
"@types/node": "^16.11.6",
"@types/react": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"cross-env": "^7.0.3",
"eslint": "^8.30.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-next": "^12.0.2",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^2.0.0",
"lint-staged": "^11.2.6",
"next-sitemap": "^2.5.12",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"typescript": "^4.4.4"
},
"license": "ISC"
}