This repository has been archived by the owner on May 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.55 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": "6fire",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "npm run lint --workspaces",
"lint:fix": "npm run lint --workspaces --fix",
"types:bundle": "npx swagger-cli bundle -o ./shared/generated/openapi-v1.json apps/api/src/entities/openapi.index.json",
"types:generate": "openapi -i shared/generated/openapi-v1.json -o shared/services --client axios --name ApiClient --useUnionTypes # --exportSchemas true",
"services:generate": "npm run types:bundle && npm run types:generate",
"validate:swagger": "npx swagger-cli validate ./shared/generated/openapi-v1.json",
"validate:prisma": "npx prisma format --schema ./apps/api/prisma/schema.prisma"
},
"workspaces": [
"apps/client",
"apps/api",
"apps/dashboard",
"apps/bot",
"shared/*",
"shared/tools"
],
"repository": {
"type": "git",
"url": "git+https://github.com/vanerac/6FIRE.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/vanerac/6FIRE/issues"
},
"homepage": "https://github.com/vanerac/6FIRE#readme",
"devDependencies": {
"@types/draft-js": "^0.11.9",
"@types/i18n": "^0.13.2",
"@types/node": "^17.0.27",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react-hooks": "^4.5.0"
},
"dependencies": {
"axios": "^0.27.0",
"draft-js": "^0.11.7",
"form-data": "^4.0.0",
"i18n": "^0.14.2",
"react-router-dom": "^6.3.0",
"redis": "^4.0.6"
}
}