-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 977 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
{
"name": "tap-docs",
"version": "1.0.0",
"private": true,
"license": "MIT",
"description": "Developer documentation for Transfer Agent Protocol",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"eslint": "eslint --cache --cache-location=node_modules/.cache/.eslintcache --fix",
"lint": "yarn run eslint . --ext .js,.jsx,.ts,.tsx,.mdx",
"format": "prettier '**/*' --ignore-unknown --write"
},
"dependencies": {
"eslint-config-next": "^14.0.4",
"next": "^14.2.3",
"nextra": "^2.13.4",
"nextra-theme-docs": "^2.13.4",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"resolutions": {
"flexsearch": "0.7.31"
},
"devDependencies": {
"@types/node": "20.10.8",
"eslint": "^8.56.0",
"eslint-plugin-mdx": "^2.3.2",
"prettier": "^3.1.1",
"typescript": "5.3.3"
}
}