-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
35 lines (35 loc) · 1.24 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
{
"name": "daorectory",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:ConsenSysMesh/daorectory.git",
"author": "nathan-knight <[email protected]>",
"type": "commonjs",
"workspaces": [
"packages/*"
],
"scripts": {
"get-secrets": "aws s3 cp s3://tmnt-secrets-development/ethonline2021/.env secrets && touch packages/daemon/.env && cat secrets >> packages/daemon/.env && rm secrets",
"test": "yarn run jest --config=jest/jest.config.js",
"start": "yarn pm2 start pm2.config.cjs --no-autorestart",
"stop": "yarn pm2 stop all && yarn pm2 delete all",
"logs-api": "yarn pm2 logs daorectory-api",
"logs-api-build": "yarn pm2 logs daorectory-api-build",
"logs-ui": "yarn pm2 logs daorectory-ui",
"connect": "aws ssm start-session --target i-0ebf6ea61528ad033"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-transform-modules-commonjs": "^7.15.4",
"@babel/preset-typescript": "^7.15.0",
"@babel/runtime": "^7.15.4",
"@types/express": "^4.17.13",
"@types/node": "^16.10.3",
"@types/node-fetch": "^2.5.12",
"@veramo/core": "^3.0.0",
"jest": "26.6.0",
"jest-extended": "^0.11.5",
"pm2": "^5.1.2",
"typescript": "^4.4.3"
}
}