-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
72 lines (72 loc) · 1.78 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
{
"name": "bos-workspace",
"version": "1.0.0-alpha.39",
"description": "",
"bin": {
"bos-workspace": "./bin/bw.js",
"bw": "./bin/bw.js"
},
"scripts": {
"build": "tsc && tsc-alias",
"build:gateway": "cd ./gateway && yarn install && yarn run build",
"dev": "watch 'yarn run build' lib",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"prepublishOnly": "yarn run build && yarn run build:gateway"
},
"files": [
"dist",
"bin",
"gateway/dist/*",
"templates",
"public"
],
"keywords": [],
"main": "./bin/bw.js",
"author": "",
"license": "ISC",
"dependencies": {
"@near-js/providers": "^0.2.1",
"@near-js/types": "^0.2.0",
"axios": "^1.7.2",
"body-parser": "^1.20.2",
"chokidar": "^3.6.0",
"commander": "^11.1.0",
"crypto-js": "^4.2.0",
"express": "^4.18.2",
"fs-extra": "^11.2.0",
"glob": "^10.3.10",
"http-proxy": "^1.18.1",
"https": "^1.0.0",
"joi": "^17.11.0",
"jsdom": "^24.1.0",
"multilang-extract-comments": "^0.4.0",
"mvdir": "^1.0.21",
"prettier": "^2.8.8",
"prompts": "^2.4.2",
"replace-in-file": "^7.1.0",
"slugify": "^1.6.6",
"socket.io": "^4.7.3",
"sucrase": "^3.34.0",
"web-encoding": "^1.1.5"
},
"devDependencies": {
"@types/crypto-js": "^4.2.2",
"@types/express": "^4.17.21",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.30",
"@types/supertest": "^6.0.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"memfs": "^4.6.0",
"supertest": "^6.3.4",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.8",
"typescript": "^5.3.3",
"watch": "^1.0.2"
}
}