-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.73 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
{
"author": "iamogbz",
"dependencies": {
"graphql-request": "7.1.2",
"lodash": "4.17.21",
"prop-types": "15.8.1",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-helmet": "6.1.0",
"react-markdown": "9.0.1",
"react-router": "7.1.1",
"react-router-dom": "7.1.1",
"remark-gfm": "^4.0.0",
"styled-components": "6.1.13",
"styled-css-grid": "1.3.0",
"styled-icons": "10.47.1"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"acorn": "^8.14.0",
"babel-loader": "^9.2.1",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-module-resolver": "^5.0.2",
"core-js": "^3.39.0",
"eslint": "^9.17.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.3",
"graphql": "^16.10.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2",
"puppeteer": "^23.11.1",
"regenerator-runtime": "^0.14.1",
"rxjs": "^7.8.1",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
},
"engines": {
"node": ">=10.4.0",
"npm": ">=6.1.0"
},
"jest": {
"coverageDirectory": "./artifacts/coverage",
"setupFilesAfterEnv": [
"./config/setupTests.js"
],
"testEnvironment": "jsdom",
"testPathIgnorePatterns": [
"./artifacts/",
"./node_modules/"
]
},
"license": "GPL-3.0",
"lint-staged": {
"ignore": [
"**/lib/*"
],
"linters": {
"*.js": [
"pnpm lint",
"pnpm test --bail --findRelatedTests"
]
}
},
"main": "lib/main.js",
"repository": "git@github.com:iamogbz/iamogbz.github.io.git",
"scripts": {
"build": "webpack --mode=production",
"build-dev": "webpack --mode=development",
"build-watch": "npm run build-dev -- --watch",
"lint-fix": "eslint --ignore-path=.gitignore --fix",
"lint": "pnpm lint-fix .",
"precommit": "lint-staged",
"test": "jest"
}
}