-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 2.12 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
51
52
53
54
55
56
57
58
59
60
61
{
"name": "tokenizk-finance",
"private": true,
"version": "0.0.1",
"description": "",
"author": "",
"license": "MIT",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"libs:build": "npm run lib:build -w @tokenizk/types && npm run lib:build -w @tokenizk/util && npm run lib:build -w @tokenizk/merkle-tree && npm run lib:build -w @tokenizk/contracts && npm run lib:build -w @tokenizk/entities",
"webUI:dev": "npm run dev -w @tokenizk/web-ui",
"coreService:dev": "npm run serve -w @tokenizk/core-service",
"apiGateway:dev": "npm run serve -w @tokenizk/api-gateway",
"proofGen:dev": "npm run serve -w @tokenizk/proof-gen",
"chainTracker:dev": "npm run serve -w @tokenizk/chain-tracker",
"build": "npm run libs:build && npm run build --workspaces --if-present",
"clean": "rimraf ./_dist && npm run lib:clean --workspaces --if-present && npm run clean --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present && npm run lib:lint --workspaces --if-present"
},
"dependencies": {
"axios": "^0.27.2",
"axios-retry": "^3.7.0",
"dotenv": "^16.3.1",
"shelljs": "^0.8.5",
"typescript-json-schema": "^0.59.0"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.1.0",
"@types/bcryptjs": "^2.4.2",
"@types/estree": "^0.0.51",
"@types/jest": "^27.4.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "^16.0.21",
"@types/pino": "^7.0.5",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^10.0.0",
"concurrently": "^7.2.0",
"copyfiles": "2.4.1",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.2.0",
"jest": "^29.0.0",
"nodemon": "^2.0.15",
"pino-pretty": "^7.5.3",
"pkg": "^5.6.0",
"rimraf": "3.0.2",
"ts-jest": "^29.1.2",
"ts-loader": "^9.2.3",
"ts-node": "^10.6.0",
"tsc-alias": "^1.8.7",
"tsconfig-paths": "^3.10.1",
"tslib": "^2.4.0",
"typescript": "~5.2.0"
}
}