-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.18 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.18 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
{
"name": "abeatte",
"version": "2.0.0",
"private": true,
"homepage": "https://artbeatte.com",
"scripts": {
"clean": "sudo rm -r build node_modules",
"dev": "next dev",
"build": "next build",
"start": "npx serve@latest ./build",
"predeploy": "npm run build",
"deploy": "touch build/.nojekyll && gh-pages -d build --dotfiles",
"test": "vitest --run"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^7.1.0",
"@fortawesome/free-brands-svg-icons": "^7.1.0",
"@fortawesome/free-solid-svg-icons": "^7.1.0",
"@fortawesome/react-fontawesome": "^3.1.0",
"classnames": "^2.5.1",
"next": "^16.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-ga": "^3.3.1",
"react-konami-code": "^2.3.0",
"react-scroll": "^1.9.3"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "24.10.0",
"@types/react": "19.2.2",
"@types/react-scroll": "^1.8.10",
"gh-pages": "^6.3.0",
"jsdom": "^25.0.1",
"npm-check-updates": "^19.1.2",
"typescript": "5.9.3",
"vitest": "^2.1.9"
}
}