-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.39 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
{
"name": "www-aaronjy-2024",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"server": "npx decap-server",
"build": "next build",
"docker:build": "docker build -t www-aaronjy-2024 .",
"postbuild": "next-sitemap --config next-sitemap.config.cjs",
"start": "next start",
"link": "npx standard",
"format": "npx standard --fix",
"prepare": "husky",
"deploy": "./util/pre-deploy.sh && ./util/deploy-gcloud.sh",
"test": "jest --verbose",
"lint": "next lint"
},
"dependencies": {
"date-fns": "^4.1.0",
"feather-icons": "^4.29.2",
"next": "^14.2.6",
"next-seo": "^6.5.0",
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"@commitlint/cli": "^19.1.0",
"@commitlint/config-conventional": "^19.1.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^16.0.0",
"@types/jest": "^29.5.12",
"babel-jest": "^29.7.0",
"eslint": "^9.9.0",
"front-matter": "^4.0.2",
"frontmatter-markdown-loader": "^3.7.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"js-yaml": "^4.1.0",
"next-sitemap": "^4.0.9",
"react-test-renderer": "^18.3.1",
"showdown": "^2.1.0",
"standard": "^17.1.0"
}
}