-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.37 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
{
"name": "@terragon/api",
"version": "1.7.10",
"description": "Secure API For Database Writes",
"main": "index.js",
"scripts": {
"build-ts": "tsc",
"start": "npm run serve",
"serve": "node dist/server.js",
"watch-node": "nodemon dist/server.js",
"watch-ts": "tsc -w",
"types": "ts-interface-builder src/types.ts",
"dev": "API_BIND_IP=10.0.0.115 ORIGIN=http://10.0.0.115:4200 STRIPE_KEY=sk_test_T2LvLVTcu1EHVi2jFBpAYKYx COUCH_USER=guest COUCH_PASS=guest COUCH_PORT=5984 COUCH_HOST=10.0.0.115 node dist/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/terragon-social-club/api.git"
},
"author": "Mike Keen",
"license": "ISC",
"bugs": {
"url": "https://github.com/terragon-social-club/api/issues"
},
"homepage": "https://github.com/terragon-social-club/api#readme",
"devDependencies": {
"@types/express": "^4.17.2",
"@types/stripe": "^6.32.13",
"nodemon": "^1.19.4",
"ts-interface-builder": "^0.1.8",
"tslint": "^5.20.1",
"typescript": "^3.7.5"
},
"dependencies": {
"@mkeen/rxcouch": "^4.2.2",
"cookie-parser": "^1.4.4",
"cookie-session": "^1.4.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"legit": "^1.0.7",
"libphonenumber-js": "^1.7.31",
"rxjs": "6.2.2",
"salt-api": "^1.1.1",
"stripe": "^7.15.0",
"ts-interface-checker": "^0.1.10"
}
}