-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 949 Bytes
/
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
{
"name": "as-info-next",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "20.x"
},
"scripts": {
"dev": "next dev",
"start": "next start",
"build": "next build",
"gcp-build": "next build",
"export": "NODE_ENV=production next build && next export --outdir=./docs",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"eslint-config-next": "^13.4.10",
"js-yaml": "^4.1.0",
"js-yaml-loader": "^1.2.2",
"next": "^14.2.22",
"next-seo": "^6.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@markuplint/html-parser": "^3.10.0",
"@markuplint/jsx-parser": "^3.9.0",
"@markuplint/react-spec": "^3.10.0",
"@types/node": "^20.4.2",
"@types/react": "^18.2.15",
"eslint": "^8.29.0",
"markuplint": "^3.12.0",
"typescript": "^5.1.6"
}
}