-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
91 lines (91 loc) · 2.97 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
84
85
86
87
88
89
90
91
{
"name": "circles-api",
"version": "1.12.0",
"description": "Offchain database and API service for Circles",
"main": "src/index.js",
"private": true,
"contributors": [
"adzialocha",
"llunaCreixent",
"ana0",
"louilinn",
"JacqueGM"
],
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "git://github.com/CirclesUBI/circles-api.git"
},
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "babel ./src --out-dir ./build",
"clear": "rimraf ./build",
"db:migrate": "sequelize db:migrate",
"db:seed": "sequelize db:seed:all",
"lint": "eslint --ignore-path .gitignore .",
"serve": "cross-env NODE_ENV=development babel-node ./src/index.js --source-maps inline",
"serve:all": "concurrently --prefix '{pid}-{name}' --names 'API,WORKERS' --kill-others 'npm run serve' 'npm run worker:serve'",
"start": "cross-env NODE_ENV=production node ./build/index.js",
"test": "jest --forceExit --detectOpenHandles",
"test:watch": "npm run test -- --watch",
"watch": "nodemon --watch ./src --exec npm run serve",
"watch:all": "concurrently --prefix '{pid}-{name}' --names 'API,WORKERS' --kill-others 'npm run watch' 'npm run worker:watch'",
"worker:serve": "NODE_ENV=development babel-node -r dotenv/config ./src/worker.js --source-maps inline",
"worker:start": "cross-env NODE_ENV=production node ./build/worker.js",
"worker:watch": "nodemon --watch ./src --exec npm run worker:serve"
},
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.25.2",
"@babel/eslint-parser": "^7.25.1",
"@babel/node": "^7.25.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-transform-runtime": "^7.24.7",
"@babel/preset-env": "^7.25.4",
"babel-plugin-add-module-exports": "^1.0.4",
"concurrently": "^8.2.2",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"ethereumjs-abi": "^0.6.8",
"jest": "^27.5.1",
"nock": "^13.5.5",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"rimraf": "^5.0.10",
"supertest": "^6.3.4",
"truffle": "^5.9.4"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.663.0",
"@babel/runtime": "^7.25.4",
"@circles/core": "^4.5.0",
"@circles/transfer": "^3.1.0",
"body-parser": "^1.20.2",
"bull": "^4.16.0",
"celebrate": "^15.0.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"fast-json-stringify": "^5.7.0",
"helmet": "^7.1.0",
"http-status": "^1.7.4",
"isomorphic-fetch": "^3.0.0",
"method-override": "^3.0.0",
"mime": "^3.0.0",
"morgan": "^1.10.0",
"multer": "^1.4.4",
"pg": "^8.12.0",
"pg-copy-streams": "^6.0.6",
"sequelize": "^6.37.3",
"sequelize-cli": "^6.6.2",
"sharp": "^0.32.6",
"web3": "^1.10.4",
"winston": "^3.14.2"
}
}