-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.96 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 2.96 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
{
"name": "alexjsully-portfolio",
"contributors": [
{
"name": "Alexander Sullivan",
"email": "alexjsully.connect@outlook.com",
"url": "https://alexjsully.me/"
}
],
"version": "2.0.15",
"private": true,
"license": "MIT",
"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-cli2 --fix",
"lint:markdown:check": "markdownlint-cli2",
"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 && tsc -p cypress/tsconfig.json --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": "^9.2.0",
"@mui/material": "^9.2.0",
"@sentry/nextjs": "^10.67.0",
"@vercel/speed-insights": "^2.0.0",
"firebase": "^12.16.0",
"lodash": "^4.18.1",
"next": "^16.2.11",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"sharp": "^0.35.3",
"webpack": "^5.108.4"
},
"devDependencies": {
"@sentry/core": "^10.67.0",
"@sentry/types": "^10.67.0",
"@svgr/webpack": "^8.1.0",
"@testing-library/jest-dom": "^7.0.0",
"@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": "^26.1.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/parser": "^8.65.0",
"caniuse-lite": "^1.0.30001806",
"concurrently": "^10.0.3",
"cypress": "^15.19.0",
"cypress-axe": "^1.7.0",
"eslint": "^10.7.0",
"eslint-plugin-cypress": "^6.4.3",
"globals": "^17.7.0",
"jest": "^30.4.2",
"jest-environment-jsdom": "^30.4.1",
"jest-transform-stub": "^2.0.0",
"markdownlint-cli2": "^0.23.1",
"prettier": "^3.9.6",
"sass": "^1.101.3",
"start-server-and-test": "^3.0.11",
"typescript": "^6.0.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": "."
}