-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.3 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
{
"name": "jenntesolin.com",
"version": "4.0.0",
"description": "",
"private": true,
"engines": {
"npm": ">=8.0.0",
"node": ">=17.0.0"
},
"scripts": {
"start": "next start -H 0.0.0.0 -p ${PORT:-8080}",
"dev": "next dev",
"build": "next build",
"export": "npm run build && next export -o _static",
"lint": "next lint"
},
"keywords": [],
"repository": {
"type": "git",
"url": "git+https://github.com/jennifert/nextjs-site.git"
},
"author": "Jennifer Tesolin",
"license": "",
"bugs": {
"url": "https://github.com/jennifert/nextjs-site/issues"
},
"homepage": "https://github.com/jennifert/nextjs-site/#readme",
"dependencies": {
"@tailwindcss/forms": "^0.5.9",
"autoprefixer": "^10.4.20",
"html-react-parser": "^5.1.18",
"next": "^14.2.15",
"next-pwa": "^5.6.0",
"postcss": "^8.4.47",
"prismjs": "^1.29.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwindcss": "^3.4.14"
},
"devDependencies": {
"babel-plugin-prismjs": "^2.1.0",
"webpack": "^5.95.0",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.15",
"eslint-plugin-jsx-a11y": "^6.10.0"
}
}