forked from Patrik-Stas/indyscan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.32 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
{
"name": "indyscan-webapp",
"version": "4.5.2",
"description": "Web application to browse Hyperledger Indy blockchain transactions.",
"main": "index.js",
"scripts": {
"lint": "standard",
"lint:fix": "standard --fix",
"dev": "NODE_OPTIONS='--inspect' nodemon server/index.js",
"test:unit": "jest tests/unit",
"build": "next build",
"start": "next start",
"serve:dev": "NODE_ENV=dev node server/index.js",
"serve": "NODE_ENV=production node server/index.js",
"serve:localhost": "node server/index.js"
},
"keywords": [],
"author": "Patrik Staš",
"license": "ISC",
"standard": {
"parser": "babel-eslint",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
}
},
"plugins": [
"react"
]
},
"dependencies": {
"@zeit/next-sass": "^1.0.1",
"awesome-debounce-promise": "^2.1.0",
"canonical-json": "0.0.4",
"date-format": "^2.0.0",
"dotenv": "^7.0.0",
"express": "^4.17.1",
"express-prettify": "^0.1.1",
"express-validation": "^1.0.2",
"http-proxy-middleware": "^0.20.0",
"indyscan-api-client": "file:../indyscan-api-client",
"indyscan-txtype": "file:../indyscan-txtype",
"is-port-reachable": "^3.0.0",
"isomorphic-fetch": "^2.2.1",
"joi": "^14.3.1",
"lodash": "^4.17.21",
"moment": "^2.24.0",
"moment-timezone": "^0.5.33",
"next": "^9.3.6",
"next-routes": "^1.4.2",
"node-sass": "^4.14.1",
"pkginfo": "^0.4.1",
"query-string": "^6.8.1",
"raw-loader": "^0.5.1",
"rc-pagination": "^1.20.1",
"react": "^16.8.6",
"react-circular-progressbar": "^2.0.3",
"react-dom": "^16.8.6",
"react-epic-spinners": "^0.4.1",
"react-json-pretty": "^2.1.0",
"react-tooltip": "^3.10.0",
"react-transition-group": "^4.3.0",
"semantic-ui-react": "^0.84.0",
"sleep-promise": "^8.0.1",
"socket.io-client": "^2.3.1",
"winston": "^3.2.1"
},
"devDependencies": {
"autoprefixer": "^8.3.0",
"babel-eslint": "^10.1.0",
"command-line-args": "^5.1.1",
"command-line-usage": "^5.0.5",
"eslint-plugin-react": "^7.19.0",
"@types/jest": "^26.0.23",
"jest": "^27.0.6",
"jest-cli": "^27.0.6",
"nodemon": "^1.19.4",
"postcss-easy-import": "^3.0.0",
"postcss-loader": "^2.1.4",
"sass-loader": "^7.0.1",
"standard": "^14.3.4"
}
}