This repository has been archived by the owner on Jun 16, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
92 lines (92 loc) · 3.41 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
88
89
90
91
92
{
"name": "next.js_template",
"version": "0.0.0",
"private": true,
"license": "MIT",
"scripts": {
"analyz:build": "cross-env ANALYZE=true next build",
"build": "node verify-node-version.cjs && next build",
"dev": "node verify-node-version.cjs && next dev",
"export": "yarn build && next export",
"prepare": "husky install && node verify-node-version.cjs",
"lint": "cross-env NO_LOGS=true eslint -c ./.eslintrc.cjs '**/*.{ts,tsx}'",
"lint:staged": "lint-staged",
"lint:css": "cross-env BROWSERSLIST_ENV=production stylelint --config=./.stylelintrc.cjs '**/*.{js,jsx,tsx,ts,less,css,scss,sass}'",
"lint:css:fix": "cross-env BROWSERSLIST_ENV=production stylelint --config=./.stylelintrc.cjs '**/*.{js,jsx,tsx,ts,less,css,scss,sass}' --fix",
"lint:fix": "yarn run lint -- --fix && yarn rustywind --write .",
"prettier": "prettier --config=.prettierrc.cjs --write '**/*.{js,jsx,tsx,ts,less,md,json,css,scss,sass}'",
"start": "node verify-node-version.cjs && next start",
"test": "node verify-node-version.cjs && jest --config=./jest.config.cjs",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"debug:eslint:config": "cross-env NO_LOGS=true eslint --print-config .eslintrc.js"
},
"lint-staged": {
"*.{js,jsx,tsx,ts,less,md,json,css,scss,sass}": "prettier --write",
"*.{js,jsx,ts,tsx}": "eslint -c ./.eslintrc.cjs --fix",
"*.{js,jsx,tsx,ts,less,css,scss,sass}": "stylelint --config=./.stylelintrc.cjs --fix"
},
"eslintIgnore": [
"build/*"
],
"dependencies": {
"@vercel/fetch": "^6.2.0",
"next": "12.2.0",
"next-seo": "5.4.0",
"next-themes": "0.2.0",
"next-with-sitemap": "^2.5.2",
"next-with-workbox": "^3.0.3",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-error-boundary": "^3.1.4",
"react-ssr-prepass": "^1.5.0",
"resolve-url-loader": "^5.0.0",
"rosetta": "^1.1.0",
"schema-utils": "^4.0.0",
"swr": "1.3.0",
"x2js": "^3.4.3",
"xml-formatter": "^2.6.1"
},
"devDependencies": {
"@anolilab/eslint-config": "^4.0.7",
"@anolilab/stylelint-config": "^3.0.3",
"@anolilab/textlint-config": "^4.0.4",
"@axe-core/react": "4.4.3",
"@next/bundle-analyzer": "^12.1.6",
"@teamsupercell/typings-for-css-modules-loader": "^2.5.1",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.2.0",
"@types/enzyme": "^3.10.12",
"@types/jest": "^28.1.0",
"@types/react-dom": "^18.0.5",
"@types/react-helmet": "^6.1.5",
"@types/webpack": "^5.28.0",
"@types/webpack-bundle-analyzer": "^4.4.1",
"@types/webpack-env": "^1.17.0",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"browserslist-config-anolilab": "^3.0.3",
"cross-env": "^7.0.3",
"enzyme": "^3.11.0",
"eslint": "^8.17.0",
"eslint-plugin-jest": "^26.4.6",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-typescript": "^0.14.0",
"glob": "^8.0.3",
"husky": "^8.0.1",
"jest": "^28.1.0",
"lint-staged": "^13.0.0",
"lodash.map": "^4.6.0",
"prettier": "^2.6.2",
"react-refresh": "^0.14.0",
"stylelint": "^14.8.5",
"ts-jest": "^28.0.4",
"ts-loader": "9.3.1",
"typescript": "^4.7.3",
"webpack-bundle-analyzer": "^4.5.0",
"workbox-precaching": "^6.5.3",
"workbox-window": "^6.5.3"
}
}