-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
109 lines (109 loc) · 3.79 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
{
"name": "wbeuil.com",
"version": "0.1.0",
"private": true,
"homepage": "https://wbeuil.com",
"scripts": {
"dev": "next dev",
"prebuild": "npm-run-all --parallel sitemap rss",
"build": "next build",
"prestart": "npm run build",
"start": "next start",
"prettify": "prettier --write '**/*.{js,jsx,ts,tsx,json}'",
"lint": "eslint --fix --ext .js,.jsx,.ts,.tsx .",
"typecheck": "npm-run-all --parallel typecheck:rest typecheck:cypress",
"typecheck:rest": "tsc --noEmit -p .",
"typecheck:cypress": "tsc --noEmit -p cypress",
"pretest": "ts-node scripts/generate-fake-blog.ts",
"test": "is-ci-cli test:coverage test:watch",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:debug": "node --inspect-brk ./node_modules/.bin/jest --watch --no-cache --runInBand",
"test:memory": "node --expose-gc ./node_modules/.bin/jest --runInBand --logHeapUsage",
"sitemap": "ts-node scripts/generate-sitemap.ts",
"rss": "ts-node scripts/generate-rss.ts",
"cy:install": "cypress install",
"cy:open": "cypress open",
"cy:run": "cypress run",
"test:e2e": "start-server-and-test dev 3000 cy:open",
"test:e2e:run": "start-server-and-test start 3000 cy:run",
"validate": "npm-run-all --parallel lint typecheck",
"prepare": "husky install",
"publish": "ts-node scripts/publish-blog.ts",
"frontmatter": "ts-node scripts/check-frontmatter.ts"
},
"dependencies": {
"@influxdata/influxdb-client": "^1.17.0",
"@reach/menu-button": "^0.16.1",
"@reach/skip-nav": "^0.16.0",
"chrome-aws-lambda": "^9.1.0",
"device-detector-js": "^2.2.10",
"esbuild": "^0.12.22",
"focus-visible": "^5.2.0",
"gray-matter": "^4.0.3",
"mdx-bundler": "^6.0.1",
"next": "^11.1.0",
"next-localization": "^0.11.0",
"puppeteer-core": "^9.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-spring": "^9.2.4",
"reading-time": "^1.4.0",
"remark-prism": "^1.3.6",
"swr": "^0.5.6"
},
"devDependencies": {
"@jackfranklin/test-data-bot": "^1.3.0",
"@svgr/webpack": "^5.5.0",
"@testing-library/cypress": "^8.0.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/react-hooks": "^7.0.1",
"@testing-library/user-event": "^13.2.1",
"@types/dotenv": "^8.2.0",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.1",
"@types/node-fetch": "^2.5.12",
"@types/react": "^17.0.19",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"@typescript-eslint/typescript-estree": "^4.29.3",
"cypress": "^8.3.0",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-next": "^11.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-cypress": "^2.11.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-jest-dom": "^3.9.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-next": "^0.0.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^4.12.0",
"globby": "^11.0.4",
"husky": "^7.0.2",
"is-ci": "^3.0.0",
"is-ci-cli": "^2.2.0",
"jest": "^27.0.6",
"jest-watch-typeahead": "^0.6.4",
"joi": "^17.4.2",
"lint-staged": "^11.1.2",
"next-page-tester": "^0.28.0",
"node-fetch": "^2.6.1",
"npm-run-all": "^4.1.5",
"postcss-focus-visible": "^5.0.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.3.2",
"rss": "^1.2.2",
"sitemap": "^7.0.0",
"start-server-and-test": "^1.13.1",
"tailwindcss": "^2.2.7",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.3.5"
}
}