-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.56 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
{
"name": "eckochain-client",
"version": "1.0.0",
"description": "Node.js Express REST application for the ECKOchain",
"type": "module",
"main": "app.js",
"scripts": {
"start": "node src/app",
"dev": "export NODE_ENV=development && nodemon src/app",
"build:docker": "docker build -f Dockerfile -t ecko/client:latest .",
"test": "jest --silent"
},
"repository": {
"type": "git",
"url": "https://github.com/kehm/eckochain-client"
},
"author": "kehm",
"license": "Apache-2.0",
"homepage": "https://github.com/kehm/eckochain-client",
"dependencies": {
"axios": "^0.27.2",
"connect-session-sequelize": "^7.1.5",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cron": "^1.8.2",
"dotenv": "^16.0.3",
"ejs": "^3.1.8",
"express": "^4.18.2",
"express-session": "^1.17.3",
"express-validator": "^6.14.3",
"fabric-ca-client": "2.2.16",
"fabric-network": "2.2.16",
"helmet": "^6.0.1",
"js-yaml": "^4.1.0",
"multer": "^1.4.5-lts.1",
"nanoid": "^3.3.4",
"nodemailer": "^6.9.0",
"passport": "^0.6.0",
"passport-oauth2": "^1.6.1",
"pg": "^8.8.0",
"pg-hstore": "^2.3.4",
"pkcs11js": "^1.3.1",
"sequelize": "^6.28.0",
"sharp": "^0.31.3",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.20.11",
"@babel/preset-env": "^7.20.2",
"babel-jest": "^29.3.1",
"eslint": "^8.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"jest": "^29.3.1",
"nodemon": "^2.0.20"
}
}