-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 951 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
{
"name": "decentralized-guild",
"version": "0.1.0",
"private": true,
"workspaces": [
"packages/app",
"packages/oas",
"packages/symbol-oas"
],
"scripts": {
"dev": "npm run dev -w packages/app",
"build": "npm run build -w packages/app",
"start": "npm run start -w packages/app",
"oas": "npm run build -w packages/oas",
"prisma": "npm run prisma -w packages/app",
"connect:db": "sqlite3 ./packages/app/prisma/main.db"
},
"dependencies": {
"typescript": "^5.1.6"
},
"devDependencies": {
"@openapitools/openapi-generator-cli": "^2.5.2",
"@types/node": "^18.15.0",
"eslint": "^8.36.0",
"eslint-config-next": "^13.2.4",
"prettier": "^2.8.7",
"swagger-viewer": "^0.2.9"
},
"bugs": {
"url": "/~https://github.com/ymuichiro/decentralized-guild/issues"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/ymuichiro/decentralized-guild.git"
}
}