-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
74 lines (74 loc) · 2.27 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
{
"name": "probe",
"version": "1.0.0",
"description": "Probe is a web GUI application with for Hyperledger Fabric mantianer, user, research to find the best block config logic for my chaincode.",
"main": "app.js",
"scripts": {
"start": "node ./bin/www",
"lint": "eslint --ext .js ./lib ./routes ./test ./e2e",
"test": "export NODE_ENV=test PORT=3300 && nyc mocha 'test/**/*.test.js' --timeout 5000 --exit",
"cover:report": "nyc report --reporter=lcov --reporter=text",
"e2eTestNetwork": "export NODE_ENV=test PORT=3000 && mocha 'e2e/testnetwork.test.js' --timeout 600000 --exit",
"e2eMiniFab": "export NODE_ENV=test PORT=3000 && mocha 'e2e/minifab.test.js' --timeout 600000 --exit",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SamYuan1990/Probe.git"
},
"keywords": [
"preformance",
"fabric"
],
"author": "SamYuan1990",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/SamYuan1990/Probe/issues"
},
"homepage": "https://github.com/SamYuan1990/Probe#readme",
"dependencies": {
"body-parser": "^1.20.3",
"cookie-parser": "^1.4.7",
"csv": "^5.5.3",
"debug": "~4.4.0",
"ejs": "^3.1.6",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"express-slow-down": "^2.0.3",
"helmet": "^8.0.0",
"http-errors": "~2.0.0",
"i18next-browser-languagedetector": "^8.0.2",
"i18next-http-backend": "^3.0.1",
"log4js": "^6.9.1",
"morgan": "~1.10.0",
"pug": "^3.0.2",
"react-i18next": "^15.3.0",
"react-json-view": "^1.21.3",
"system-sleep": "^1.3.7"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"babel-loader": "^9.1.3",
"bootstrap": "^5.3.3",
"chai": "^4.3.6",
"eslint": "^9.17.0",
"i18next": "^24.2.0",
"jquery": "^3.7.1",
"mocha": "^11.0.1",
"nyc": "^17.1.0",
"react": "^19.0.0",
"react-bootstrap": "^2.10.7",
"react-dom": "^19.0.0",
"react-redux": "^9.2.0",
"react-router-dom": "^7.1.1",
"react-transition-group": "^4.4.2",
"redux": "^5.0.1",
"redux-devtools": "^3.7.0",
"redux-undo": "^1.1.0",
"supertest": "^7.0.0",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
}
}