-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
44 lines (44 loc) · 1.71 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
{
"name": "stellar-stripe-anchor",
"version": "1.0.0",
"scripts": {
"client": "cd client && yarn start",
"bridge": "./bridge-server/bin/bridge -c bridge.cfg",
"server": "concurrently --kill-others-on-fail \"ts-node -F server.ts --ignore bridge-server\" \"yarn bridge\"",
"dev": "concurrently --kill-others-on-fail \"NODE_ENV=development yarn server\" \"yarn client\"",
"prod": "concurrently --kill-others-on-fail \"NODE_ENV=production yarn server\" \"yarn client\"",
"test": "concurrently --kill-others \"sleep 1 && NODE_ENV=test nyc ts-mocha -R spec src/test/spec.ts\"",
"setup": "yarn generate:bridge.cfg && yarn && cd client && yarn && yarn build && cd ../ && git submodule update --init --recursive && cd bridge-server && go get github.com/constabulary/gb/... && gb build && cd ../ && ./bridge-server/bin/bridge -c bridge.cfg --migrate-db",
"generate:bridge.cfg": "ts-node bridge.cfg.ts"
},
"dependencies": {
"@types/express": "^4.16.0",
"@types/node": "^10.3.5",
"@types/request-promise-native": "^1.0.15",
"@types/stellar-sdk": "^0.8.4",
"@types/stripe": "^5.0.15",
"body-parser": "1.18.2",
"concurrently": "^3.5.1",
"dotenv": "^6.0.0",
"express": "^4.16.2",
"log": "^1.4.0",
"request": "^2.83.0",
"request-promise-native": "^1.0.5",
"stellar-sdk": "^0.8.0",
"stripe": "^5.4.0",
"ts-node": "^7.0.0",
"typescript": "^2.9.2"
},
"devDependencies": {
"@types/mocha": "^5.2.4",
"@types/should": "^13.0.0",
"@types/supertest": "^2.0.5",
"mocha": "^5.0.0",
"nyc": "^11.4.1",
"should": "^13.2.1",
"supertest": "^3.0.0",
"ts-mocha": "1.2.0",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.14.0"
}
}