-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
82 lines (82 loc) · 2.8 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
{
"name": "circles-api",
"version": "1.3.1",
"description": "Offchain database and API service for Circles",
"main": "src/index.js",
"private": true,
"contributors": [
"adzialocha"
],
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "git://github.com/CirclesUBI/circles-api.git"
},
"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": "cross-env NODE_ENV=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.12.1",
"@babel/core": "^7.12.3",
"@babel/node": "^7.12.1",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"babel-eslint": "^10.1.0",
"babel-plugin-add-module-exports": "^1.0.4",
"concurrently": "^5.3.0",
"cross-env": "^7.0.2",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.6.1",
"nock": "^13.0.4",
"nodemon": "^2.0.6",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"sequelize-cli": "^6.2.0",
"supertest": "^5.0.0",
"truffle": "^5.1.50"
},
"dependencies": {
"@babel/runtime": "^7.12.1",
"@circles/core": "^2.10.3",
"@circles/transfer": "^1.1.0",
"aws-sdk": "^2.781.0",
"body-parser": "^1.19.0",
"bull": "^3.18.0",
"celebrate": "^12.2.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"fast-json-stringify": "^2.2.9",
"helmet": "^4.1.1",
"http-status": "^1.4.2",
"isomorphic-fetch": "^3.0.0",
"method-override": "^3.0.0",
"mime": "^2.4.6",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"pg": "^8.4.2",
"sequelize": "^6.3.5",
"sharp": "^0.26.2",
"web3": "^1.3.0",
"winston": "^3.3.3"
}
}