This repository has been archived by the owner on Apr 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.58 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "nextjs-blog",
"version": "0.1.0",
"private": true,
"scripts": {
"commit": "git add . && cz",
"dev": "cross-env NODE_ICU_DATA=node_modules/full-icu next dev",
"prebuild": "yarn compile",
"build": "cross-env NODE_ICU_DATA=node_modules/full-icu next build",
"postbuild": "next-sitemap",
"start": "cross-env NODE_ICU_DATA=node_modules/full-icu next start",
"lint": "eslint --fix .",
"extract": "node ./scripts/extract.js",
"compile": "node ./scripts/compile.js",
"test": "jest --watch",
"test:ci": "jest --ci",
"coveralls": "jest --coverage && coveralls < coverage/lcov.info",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc",
"release": "standard-version",
"release:alpha": "standard-version --prerelease alpha --skip.changelog",
"upgrade:interactive": "yarn upgrade-interactive --latest"
},
"dependencies": {
"@emotion/cache": "^11.1.3",
"@emotion/core": "^11.0.0",
"@emotion/css": "^11.1.3",
"@emotion/react": "^11.1.5",
"@emotion/server": "^11.0.0",
"@emotion/styled": "^11.1.5",
"@formatjs/intl-datetimeformat": "^3.2.6",
"@formatjs/intl-displaynames": "^4.0.5",
"@formatjs/intl-getcanonicallocales": "^1.5.3",
"@formatjs/intl-listformat": "^5.0.5",
"@formatjs/intl-locale": "^2.4.14",
"@formatjs/intl-numberformat": "^6.1.4",
"@formatjs/intl-pluralrules": "^4.0.6",
"@formatjs/intl-relativetimeformat": "^8.0.4",
"@material-ui/core": "^5.0.0-alpha.24",
"@material-ui/icons": "^4.11.2",
"@testing-library/jest-dom": "^5.11.9",
"axios": "^0.21.1",
"chalk": "^4.1.0",
"clsx": "^1.1.1",
"cross-env": "^7.0.3",
"date-fns": "^2.17.0",
"full-icu": "^1.3.1",
"gray-matter": "^4.0.2",
"next": "^10.0.6",
"prop-types": "^15.7.2",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-intl": "^5.11.0",
"remark": "^13.0.0",
"remark-html": "^13.0.1",
"shelljs": "^0.8.4",
"storyblok-js-client": "^3.3.1",
"storyblok-react": "^0.1.2",
"storyblok-rich-text-react-renderer": "^2.1.0",
"swr": "^0.4.1"
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@formatjs/cli": "^3.0.5",
"@testing-library/react": "^11.2.5",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-plugin-formatjs": "^9.0.4",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.19.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-formatjs": "^2.11.0",
"eslint-plugin-html": "^6.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sonarjs": "^0.6.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"jest-cli": "^26.6.3",
"jest-html-reporter": "^3.3.0",
"jest-sonar-reporter": "^2.0.0",
"jest-watch-typeahead": "^0.6.1",
"lint-staged": "^10.5.3",
"next-sitemap": "^1.4.15",
"prettier": "^2.2.1",
"react-test-renderer": "^17.0.1",
"standard-version": "^9.1.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"./**/*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"jestSonar": {
"reportPath": "reports",
"reportFile": "test-reporter.xml",
"indent": 4
}
}