-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
97 lines (97 loc) · 2.99 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@nosana/cli",
"version": "0.0.0",
"description": "",
"bin": {
"nosana": "./dist/src/index.js"
},
"type": "module",
"scripts": {
"dev": "npx cross-env APP_ENV=development ts-node src/index.ts",
"build": "npm run prepare && tsc && cp .env.production ./dist/ && cp .env.dev ./dist/",
"generate": "openapi-typescript http://dashboard.k8s.prd.nos.ci/api/swagger/json -o ./src/api/schema.d.ts",
"test": "APP_ENV=development DOCKER_CERT_PATH= jest --watch",
"test:coverage": "APP_ENV=development DOCKER_CERT_PATH= jest --coverage",
"publish:next": "npm run build && npm publish --tag=next --access public",
"publish:public": "npm run build && npm publish --access public",
"prepare": "npm run generate && ts-patch install && typia patch",
"prettier": "prettier --check ./src",
"prettier:fix": "prettier --write ./src",
"eslint": "eslint ./src",
"eslint:fix": "eslint --fix ./src",
"lint": "npm run prettier && npm run eslint",
"lint:fix": "npm run prettier:fix && npm run eslint:fix"
},
"keywords": [],
"files": [
"dist",
"LICENSE",
"README.md",
"package.json",
"npm-shrinkwrap.json"
],
"author": "Laurens Verspeek",
"license": "ISC",
"devDependencies": {
"@types/bn.js": "^5.1.6",
"@types/cli-progress": "^3.11.6",
"@types/cors": "^2.8.17",
"@types/dockerode": "^3.3.23",
"@types/eventsource": "^1.1.15",
"@types/express": "^4.17.21",
"@types/figlet": "^1.5.6",
"@types/inquirer": "^9.0.3",
"@types/jest": "^29.5.12",
"@types/node": "^20.3.2",
"@types/shell-quote": "^1.7.5",
"@types/tar": "^6.1.6",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^35.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.5",
"ts-jest-mock-import-meta": "^1.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.2"
},
"dependencies": {
"@coral-xyz/anchor": "^0.28.1-beta.1",
"@inquirer/prompts": "^4.3.0",
"@nosana/sdk": "0.3.60",
"@solana/web3.js": "^1.78.0",
"bn.js": "^5.2.1",
"chalk": "^5.3.0",
"cli-progress": "^3.12.0",
"commander": "^11.0.0",
"cors": "^2.8.5",
"cron": "^3.1.6",
"dockerode": "^4.0.2",
"dotenv": "^16.4.5",
"eventsource": "^2.0.2",
"express": "^4.19.2",
"figlet": "^1.6.0",
"inquirer": "^11.0.2",
"lowdb": "^7.0.1",
"openapi-fetch": "^0.10.2",
"openapi-typescript": "^7.1.2",
"ora": "^8.0.1",
"rpc-websockets": "7.9.0",
"shell-quote": "^1.8.1",
"socket.io-client": "^4.7.5",
"stream": "^0.0.2",
"tar": "^6.2.0",
"tar-buffer": "^1.3.0",
"ts-patch": "^3.2.1",
"tweetnacl": "^1.0.3",
"typia": "^5.4.14",
"undici": "^6.14.1",
"util": "^0.12.5"
}
}