-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.29 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
{
"name": "@catcatio/wallet",
"version": "0.1.0",
"description": "CatCat chatbot wallet for Crypto Currency",
"main": "index.js",
"author": "katopz <[email protected]>",
"license": "MIT",
"private": false,
"devDependencies": {
"@types/jest": "^22.2.0",
"@types/node": "^9.4.7",
"jest": "^22.4.2",
"nodemon": "^1.17.1"
},
"standard": {
"globals": [
"it",
"describe",
"expect"
]
},
"scripts": {
"dev": "next -p 8080",
"build": "next build",
"start": "next start -p 8080",
"test": "react-scripts test --env=jsdom",
"jest": "jest --watchAll",
"mon": "nodemon index.js",
"bbuild": "NODE_ENV=development docker build --no-cache -f builder.Dockerfile -t catcatio/builder . || true",
"dbuild": "NODE_ENV=production docker build -t catcatio/wallet . || true",
"in": "docker exec -it wallet /bin/sh || true",
"down": "docker-compose kill || true && docker-compose down || true",
"up": "docker-compose build && docker-compose up || true",
"attach": "docker attach wallet || true",
"logs": "docker logs wallet || true",
"deploy": ". ./scripts/remote.sh ./scripts/deploy.sh || true",
"rdev": ". ./scripts/dev.sh || true",
"nginx": "scp ./.server/etc/nginx/conf.d/https.conf [email protected]:/etc/nginx/conf.d/default.conf && npm run renginx",
"renginx": ". ./scripts/remote.sh ./scripts/renginx.sh || true",
"remote": "ssh [email protected] || true",
"sync": ". ./scripts/sync.sh || true"
},
"dependencies": {
"@rabbotio/fetcher": "^1.0.5",
"aes-js": "^3.1.0",
"body-parser": "^1.18.2",
"cookie-parser": "^1.4.3",
"debug": "^3.1.0",
"dotenv": "^5.0.1",
"express": "^4.16.2",
"firebase-admin": "^5.10.0",
"keybase-login": "^1.0.1",
"localforage": "^1.6.0",
"lodash": "^4.17.5",
"material-ui": "^1.0.0-beta.36",
"material-ui-icons": "^1.0.0-beta.36",
"morgan": "^1.9.0",
"next": "latest",
"node-keybase": "0.0.5",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-scripts": "^1.1.1",
"react-tap-event-plugin": "^3.0.2",
"react-waterfall": "^2.0.0",
"request": "^2.83.0",
"scryptsy": "^2.0.0",
"serve-favicon": "^2.4.5",
"stellar-sdk": "^0.8.0",
"typeface-roboto": "0.0.54",
"uuid": "^3.2.1"
}
}