-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.94 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.94 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
{
"name": "alexjsully-portfolio",
"contributors": [
{
"name": "Alexander Sullivan",
"email": "alexjsully.connect@outlook.com",
"url": "https://alexjsully.me/"
}
],
"version": "2.0.13",
"private": true,
"description": "Portfolio and showcase for Alexander Joo-Hyun Sullivan and related projects & experiences.",
"scripts": {
"audit:fix": "npm i && npm audit fix",
"build": "next build",
"cypress": "cypress open",
"dev": "next dev",
"e2e:headless": "start-server-and-test dev http://localhost:3000 \"cypress run --e2e --browser electron\"",
"eslint:check": "eslint ./",
"eslint": "eslint --fix ./",
"lint:markdown": "markdownlint \"**/*.md\"",
"prettier:check": "prettier --check ./",
"prettier": "prettier --write ./",
"regen-package-lock": "rm -rf node_modules package-lock.json && npm run audit:fix",
"start": "next start",
"test:cypress:e2e": "npm run e2e:headless",
"test:cypress:open": "concurrently \"npm run dev\" \"npm run cypress\"",
"test:jest:coverage": "jest --coverage",
"test:jest": "jest --passWithNoTests",
"tsc:watch": "tsc --watch --noEmit",
"tsc": "tsc --noEmit",
"validate": "npm run prettier && npm run eslint && npm run tsc && npm run test:jest && npm run test:cypress:e2e && npm run build && npm run lint:markdown"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.3.9",
"@mui/material": "^7.3.9",
"@sentry/integrations": "^7.114.0",
"@sentry/nextjs": "^10.45.0",
"@vercel/speed-insights": "^2.0.0",
"firebase": "^12.11.0",
"lodash": "^4.17.23",
"next": "^16.2.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"sharp": "^0.34.5",
"webpack": "^5.105.4"
},
"devDependencies": {
"@sentry/core": "^10.45.0",
"@sentry/types": "^10.45.0",
"@svgr/webpack": "^8.1.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.24",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"caniuse-lite": "^1.0.30001780",
"concurrently": "^9.2.1",
"cypress": "^15.12.0",
"cypress-axe": "^1.7.0",
"eslint": "^9.39.4",
"eslint-plugin-cypress": "^6.2.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^17.4.0",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"jest-transform-stub": "^2.0.0",
"markdownlint-cli": "^0.48.0",
"prettier": "^3.8.1",
"sass": "^1.98.0",
"start-server-and-test": "^2.1.5",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"bugs": "https://github.com/AlexJSully/alexjsully-portfolio/issues",
"repository": {
"type": "git",
"url": "https://github.com/AlexJSully/alexjsully-portfolio.git"
},
"keywords": [
"bioinformatics",
"gaming",
"portfolio",
"science",
"showcase",
"web-dev"
],
"homepage": "."
}