-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.54 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.54 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
{
"name": "next-resume-generator",
"version": "2.0.3",
"author": {
"name": "Colin Hemphill",
"email": "colin@colinhemphill.com",
"url": "https://colinhemphill.com"
},
"keywords": [
"resume",
"generator",
"nextjs",
"pdf"
],
"homepage": "https://github.com/colinhemphill/nextjs-resume-generator",
"scripts": {
"analyze": "ANALYZE=true next build",
"build": "next build",
"copy": "copyfiles --flat edit-me/config/**/*.{png,ico,json} public",
"dev": "next dev",
"format": "prettier --write 'src/**/*.{json,js,ts,tsx}'",
"lint": "next lint",
"prepare": "husky install && npm run copy",
"start": "next start",
"test": "jest",
"test:staged": "jest --updateSnapshot --onlyChanged",
"test:update": "jest --updateSnapshot",
"types": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "6.7.2",
"@fortawesome/free-brands-svg-icons": "6.7.2",
"@fortawesome/free-regular-svg-icons": "6.7.2",
"@fortawesome/free-solid-svg-icons": "6.7.2",
"@fortawesome/react-fontawesome": "0.2.2",
"@react-pdf/renderer": "3.1.14",
"@types/react-dom": "19.1.1",
"@vanilla-extract/css": "1.17.1",
"@vanilla-extract/css-utils": "0.1.4",
"@vanilla-extract/next-plugin": "2.4.10",
"@vanilla-extract/recipes": "0.5.5",
"@vanilla-extract/sprinkles": "1.6.3",
"blob-stream": "0.1.3",
"classnames": "2.3.1",
"front-matter": "4.0.2",
"indefinite": "2.4.1",
"marked": "4.0.15",
"next": "14.2.28",
"next-compose-plugins": "2.2.1",
"next-pwa": "5.6.0",
"normalize.css": "8.0.1",
"polished": "4.2.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-pdf-html": "1.1.21",
"react-responsive-carousel": "3.2.23",
"react-transition-group": "4.4.2",
"tiny-invariant": "1.2.0"
},
"devDependencies": {
"@next/bundle-analyzer": "14.2.28",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "13.2.0",
"@testing-library/user-event": "14.6.1",
"@types/jest": "27.5.1",
"@types/node": "17.0.33",
"@types/react": "19.1.0",
"@types/react-transition-group": "4.4.4",
"@vanilla-extract/babel-plugin": "1.2.0",
"copyfiles": "2.4.1",
"eslint": "8.15.0",
"eslint-config-next": "14.2.28",
"eslint-config-prettier": "8.5.0",
"husky": "8.0.1",
"jest": "28.1.0",
"jest-environment-jsdom": "28.1.0",
"lint-staged": "12.4.1",
"next-router-mock": "0.6.9",
"prettier": "2.6.2",
"ts-jest": "28.0.2",
"typescript": "5.8.3"
}
}