-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 4.16 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 4.16 KB
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
{
"author": {
"email": "itfarrier@icloud.com",
"name": "Dzmitry Padabed",
"url": "https://itfarrier.github.io"
},
"dependencies": {
"@p5-wrapper/react": "^5.0.2",
"gatsby": "^5.16.1",
"gatsby-plugin-alias-imports": "^1.0.5",
"gatsby-plugin-graphql-codegen": "^3.1.1",
"gatsby-plugin-i18n": "^1.0.1",
"gatsby-plugin-image": "^3.16.0",
"gatsby-plugin-manifest": "^5.16.0",
"gatsby-plugin-offline": "^6.16.0",
"gatsby-plugin-react-helmet": "^6.16.0",
"gatsby-plugin-sharp": "^5.16.0",
"gatsby-plugin-sitemap": "^6.16.0",
"gatsby-remark-images": "^7.16.0",
"gatsby-source-filesystem": "^5.16.0",
"gatsby-transformer-remark": "^6.16.0",
"gatsby-transformer-sharp": "^5.16.0",
"p5": "^2.2.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-helmet": "^6.1.0",
"sanitize.css": "^13.0.0"
},
"description": "ITFarrier",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/eslint__js": "^9.14.0",
"@types/graphql": "^14.5.0",
"@types/jest": "^30.0.0",
"@types/node": "^25.2.3",
"@types/p5": "^1.7.7",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/react-helmet": "^6.1.11",
"@typescript-eslint/eslint-plugin": "^8.55.0",
"@typescript-eslint/parser": "^8.55.0",
"ajv": "^8.17.1",
"babel-jest": "^30.2.0",
"babel-preset-gatsby": "^3.16.0",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-config-react-app": "^7.0.1",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-graphql": "^4.0.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.13.0",
"eslint-plugin-json-es": "^1.6.0",
"eslint-plugin-json-schema-validator": "^6.0.3",
"eslint-plugin-jsonc": "^2.21.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-md": "^1.0.19",
"eslint-plugin-perfectionist": "^5.5.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-sort-destructure-keys": "^2.0.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-yml": "^3.1.2",
"eslint-webpack-plugin": "^5.0.2",
"gh-pages": "^6.3.0",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jsonc-eslint-parser": "^2.4.2",
"lint-staged": "^16.2.7",
"null-loader": "^4.0.1",
"prettier": "^3.8.1",
"prettier-plugin-sh": "^0.18.0",
"ts-graphql-plugin": "^4.0.3",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.55.0"
},
"keywords": [
"IT",
"IT Farrier",
"farrier",
"itfarrier"
],
"name": "itfarrier",
"private": true,
"scripts": {
"add-new-post": "./scripts/add-new-post.sh",
"build": "gatsby build --verbose",
"check-useless-dependencies": "npx depcheck",
"clean": "find . -name '*.log' -type f -delete && rm -rf .cache node_modules public",
"clean-build": "rm -rf .cache public",
"clean-lockfile": "rm -rf package-lock.json yarn.lock",
"deploy": "npm run clean-build && git push origin source && npm run build && gh-pages -b master -d public",
"deploy-test": "npm run clean && git push test && npm run build && cp CNAME-TEST public/CNAME && gh-pages -b master -d public -o test",
"eslint": "eslint . --debug",
"eslint-auto-fix-the-whole-project": "eslint . --debug --fix",
"prepare": "husky install",
"prettier-the-whole-project": "prettier --log-level debug --write \"**/*.{js,jsx,ts,tsx,mjs,cjs,json,json5,css,scss,less,html,md,mdx,yml,yaml,graphql,gql,vue,sh}\"",
"reset": "npm run clean && npm run setup",
"reset-full": "npm run clean && npm run clean-lockfile && npm run setup",
"setup": "npm i --verbose",
"start": "npm run clean-build && gatsby develop -H 0.0.0.0 -p 8000 --verbose",
"start-prod": "npm run clean-build && npm run build && gatsby serve -p 8000 --verbose",
"test": "jest",
"upgrade-all-deps": "npx npm-check-updates --concurrency 999999999 --deep -l silly --timeout 999999999 -u && npm run setup",
"upgrade-dev-deps": "npx npm-check-updates --concurrency 999999999 --deep --dep dev -l silly --timeout 999999999 -u && npm run setup"
},
"version": "3.0.0"
}