forked from aragonone/court-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.14 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
{
"name": "@aragonone/court-backend-services",
"version": "0.2.18",
"private": true,
"author": "Aragon One",
"license": "(GPL-3.0-or-later OR AGPL-3.0-or-later)",
"main": "index.js",
"scripts": {
"build:server": "cd node_modules/@aragonone/court-backend-server && npm run build",
"start": "npm run build:server && babel-node ./bin/main.js",
"start:dev": "npm run build:server && nodemon --ignore ./build --exec babel-node ./bin/main.js",
"test": "npx mocha test --recursive --exit --require @babel/register"
},
"dependencies": {
"@aragonone/court-backend-server": "^0.2.18",
"@aragonone/court-backend-shared": "^0.2.18",
"@promster/metrics": "^4.1.10",
"@promster/server": "^4.2.12",
"axios": "^0.19.0",
"dateformat": "^3.0.3",
"dotenv": "^8.2.0",
"postmark": "^2.3.5",
"prom-client": "^12.0.0",
"web3-utils": "^1.2.4"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/node": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"chai": "^4.2.0",
"mocha": "^7.1.2",
"nodemon": "^2.0.2",
"sinon": "^9.0.2",
"sinon-chai": "^3.5.0"
}
}