-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.42 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.42 KB
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
{
"name": "bfchain-upgrade-service",
"version": "1.0.0",
"description": "生物链林PC端主动升级服务",
"author": "",
"license": "ISC",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": "16 || 18 || 20"
},
"scripts": {
"build": "lb-tsc",
"clean": "lb-clean dist *.tsbuildinfo .eslintcache",
"test": "npm run rebuild && lb-mocha --allow-console-logs dist/__tests__/**/*.js --timeout 10000",
"test:none": "lb-mocha --allow-console-logs dist/__tests__/without-app.spec.js --timeout 10000",
"start": "npm run rebuild && node -r source-map-support/register .",
"docker:build": "docker build -t bfchain-upgrade-service .",
"docker:run": "docker run -p 3000:3000 -d bfchain-upgrade-service",
"rebuild": "npm run clean && npm run build"
},
"dependencies": {
"@loopback/boot": "^6.0.0",
"@loopback/core": "^5.0.0",
"@loopback/socketio": "^0.7.0",
"@loopback/typeorm": "^0.8.0",
"log4js": "^6.9.1",
"mongodb": "^5.5.0",
"tslib": "^2.0.0"
},
"devDependencies": {
"@loopback/build": "^10.0.0",
"@loopback/cli": "^5.0.0",
"@loopback/eslint-config": "^14.0.0",
"@loopback/testlab": "^6.0.0",
"@types/mocha": "^10.0.1",
"@types/node": "^14.18.47",
"eslint": "8.22.0",
"p-event": "4.2.0",
"prettier": "^2.8.8",
"socket.io-client": "4.6.1",
"source-map-support": "^0.5.21",
"typescript": "~4.9.5"
}
}