-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.8 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
{
"name": "ysk-kyle",
"version": "1.1.0",
"description": "A portfolio website for Kyle Smith to showcase his programming and web design experience.",
"keywords": [
"portfolio",
"programming",
"resume",
"web design",
"experience",
"frontend programmer"
],
"homepage": "https://yskkyle.com",
"bugs": {
"url": "https://github.com/KyleSmith0905/ysk-kyle/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": {
"name": "Kyle Smith",
"email": "[email protected]",
"url": "https://yskkyle.com"
},
"repository": {
"type": "git",
"url": "https://github.com/KyleSmith0905/ysk-kyle"
},
"scripts": {
"dev": "next dev",
"dev:estimtest": "concurrently --kill-others \"npm run dev\" \"estimtest-cli start\"",
"build": "next build",
"start": "next build && next start",
"lint": "next lint",
"test": "cypress run",
"test:open": "cypress open",
"build:vercel": "pnpm run build",
"install:vercel": "pnpm install"
},
"dependencies": {
"@ungap/structured-clone": "^1.0.1",
"cyber-circle-identicon": "^1.0.1",
"form-data": "^4.0.0",
"next": "^12.2.5",
"react": "~18.2.0",
"react-dom": "~18.2.0",
"three": "^0.143.0"
},
"devDependencies": {
"@types/cypress": "^1.1.3",
"@types/node": "^18.7.8",
"@types/react": "^18.0.17",
"@types/three": "^0.143.1",
"@types/ungap__structured-clone": "^0.3.0",
"@typescript-eslint/eslint-plugin": "~5.33.1",
"@typescript-eslint/parser": "~5.33.1",
"concurrently": "^7.6.0",
"cypress": "~10.6.0",
"eslint": "~8.22.0",
"eslint-config-next": "^12.2.5",
"estimtest-cli": "^1.1.1",
"estimtest-utils": "^1.1.1",
"typescript": "^4.7.4"
},
"private": false,
"engines": {
"node": ">=14.x"
}
}