-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.19 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
{
"name": "grantburry.com",
"description": "I make things with computers, and sometimes they work.",
"version": "2.1.0",
"private": true,
"license": "MIT",
"homepage": "https://grantburry.com",
"author": "Grant Burry <[email protected]> (https://grantburry.com)",
"repository": {
"type": "git",
"url": "https://github.com/Burry/grantburry.com.git"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint:format": "prettier --check .",
"lint:format:fix": "prettier --write .",
"lint:js": "next lint",
"lint:js:fix": "next lint --fix",
"lint": "npm-run-all lint:js lint:format",
"lint:fix": "npm-run-all lint:js:fix lint:format:fix",
"test": "jest --coverage",
"test:watch": "jest --watch",
"test:ci": "jest --ci",
"analyze": "cross-env ANALYZE=true yarn build"
},
"dependencies": {
"@ducanh2912/next-pwa": "^10.2.9",
"@fontsource/inter": "^5.1.0",
"@fortawesome/fontawesome-pro": "^6.1.2",
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@fortawesome/pro-duotone-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"@next/bundle-analyzer": "^14.2.13",
"cross-env": "^7.0.3",
"next": "^14.2.13",
"normalize.css": "^8.0.1",
"react": "^18.3.1",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.3.1",
"styled-components": "^6.1.13"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.13",
"@types/node": "^22.7.4",
"@types/react": "^18.3.10",
"@types/react-dom": "^18.3.0",
"@types/styled-components": "^5.1.34",
"babel-jest": "^29.7.0",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.13",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-testing-library": "^6.3.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-styled-components": "^7.2.0",
"jest-watch-typeahead": "^2.2.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"typescript": "^5.6.2"
},
"volta": {
"node": "20.11.1"
}
}