-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
124 lines (124 loc) · 4.65 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
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "blog-scottnonnenberg-com",
"private": true,
"version": "2.10.0",
"scripts": {
"release": "standard-version",
"prerelease": "npm run build",
"postinstall": "patch-package",
"check-types": "tsc --noEmit",
"lint": "eslint . --cache --max-warnings 0 --ext .ts,.tsx",
"format": "prettier --write \"*.{css,js,json,md,scss,ts,tsx}\" \"./**/*.{css,js,json,md,scss,ts,tsx}\"",
"develop": "gatsby develop",
"build": "gatsby build",
"clean": "gatsby clean && rimraf .eslintcache",
"clean-typed-css": "rimraf ./**/*.scss.d.ts",
"serve": "cd public && http-server -p 8000 -a localhost",
"storybook": "start-storybook -p 6006 -s ./,./public",
"check-git": "scripts/check_git.sh",
"check-internal-links": "broken-link-checker http://localhost:8000/ --recursive --ordered --exclude-external --filter-level=3",
"check-external-links": "broken-link-checker http://localhost:8000/ --recursive --ordered --exclude-internal --filter-level=3",
"check-deep-links": "ts-node scripts/check_deep_links.ts",
"check-links": "broken-link-checker --ordered --filter-level=3",
"make-post": "ts-node scripts/make_post.ts",
"clean-post": "ts-node scripts/clean_post.ts",
"test": "npm run check-types && npm run unit && npm run lint",
"ready": "npm run build && npm run ci-with-server",
"ci": "npm run format && npm run test && npm run check-internal-links && npm run check-deep-links",
"ci-with-server": "npm-run-all --parallel --race serve ci",
"mocha": "NODE_ENV=test mocha --recursive --require ts-node/register --require test/setup.ts --extension ts",
"unit": "npm run mocha -- -s 3 -t 150 test/unit"
},
"dependencies": {
"gatsby": "3.13.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-helmet": "6.1.0"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "7.14.5",
"@scottnonnenberg/eslint-plugin-thehelp": "0.5.0",
"@scottnonnenberg/eslint-config-thehelp": "0.9.0",
"@scottnonnenberg/notate": "1.0.0",
"@storybook/react": "6.3.8",
"@types/app-module-path": "2.2.0",
"@types/async": "3.2.7",
"@types/chai": "4.2.21",
"@types/common-tags": "1.8.1",
"@types/css-modules-require-hook": "4.0.3",
"@types/fs-extra": "9.0.12",
"@types/mocha": "9.0.0",
"@types/react-helmet": "6.1.2",
"@types/superagent": "4.1.12",
"@types/underscore.string": "0.0.38",
"@typescript-eslint/eslint-plugin": "5.4.0",
"@typescript-eslint/parser": "5.4.0",
"app-module-path": "2.2.0",
"babel-loader": "8.2.2",
"babel-plugin-remove-graphql-queries": "3.13.0",
"babel-preset-react-app": "10.0.0",
"broken-link-checker": "0.7.8",
"chai": "4.3.4",
"chalk": "4.1.2",
"common-tags": "1.8.0",
"eslint": "8.2.0",
"eslint-import-resolver-typescript": "2.5.0",
"eslint-plugin-bdd": "2.1.1",
"eslint-plugin-chai-expect": "3.0.0",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-react": "7.27.0",
"eslint-plugin-security": "1.4.0",
"feed": "4.2.2",
"fs-extra": "10.0.0",
"gatsby-plugin-dts-css-modules": "2.1.1",
"gatsby-plugin-html-attributes": "1.0.5",
"gatsby-plugin-mini-css-class-name": "4.2.0",
"gatsby-plugin-no-javascript": "2.0.5",
"gatsby-plugin-no-javascript-utils": "0.7.2",
"gatsby-plugin-react-helmet": "4.13.0",
"gatsby-plugin-root-import": "2.0.7",
"gatsby-plugin-sass": "4.13.0",
"gatsby-plugin-sharp": "3.13.0",
"gatsby-plugin-typescript": "3.13.0",
"gatsby-remark-autolink-headers": "4.10.0",
"gatsby-remark-copy-linked-files": "4.10.0",
"gatsby-remark-highlight.js": "0.0.1",
"gatsby-remark-images": "5.10.0",
"gatsby-remark-smartypants": "4.10.0",
"gatsby-source-filesystem": "3.13.0",
"gatsby-transformer-remark": "4.10.0",
"gatsby-transformer-sharp": "3.13.0",
"ghooks": "2.0.4",
"http-server": "13.0.1",
"lodash": "4.17.21",
"mocha": "9.1.1",
"node-sass": "6.0.1",
"npm-run-all": "4.1.5",
"patch-package": "6.4.7",
"prettier": "2.3.2",
"rimraf": "3.0.2",
"standard-version": "9.3.1",
"superagent": "6.1.0",
"ts-node": "10.2.1",
"typescript": "4.5.2",
"underscore.string": "3.3.5",
"validate-commit-msg": "2.14.0"
},
"config": {
"ghooks": {
"commit-msg": "validate-commit-msg"
},
"validate-commit-msg": {
"maxSubjectLength": 72
}
},
"author": "Scott Nonnenberg <scott@nonnenberg.com>",
"license": "MIT",
"homepage": "https://github.com/scottnonnenberg/blog",
"repository": {
"type": "git",
"url": "git@github.com:scottnonnenberg/blog.git"
}
}