forked from sarmatdev/ptah-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.79 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
73
74
75
76
77
78
{
"name": "ptah.api",
"version": "1.4.0",
"description": "Backend for PTAH",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=local nodemon --ignore './public_html' --ignore './sites_enabled' --ignore './node_modules' -w ./ ./index.js",
"test": "npm run tests:migrations && npm run tests:generator && npm run tests:mocha",
"migrations:manual": "cross-env NODE_ENV=local migrate-mongo up",
"tests:migrations": "migrate-mongo up",
"tests:generator": "node ./test/fakes/generator.js",
"tests:mocha": "node_modules/.bin/mocha --timeout 3000 --exit ./test/index.js",
"debug:app.mock": "cross-env NODE_ENV=test REDIS_HOST='' MOCK_SERVER_PORT=3007 MAILCHIMP_METADATA_URL=http://localhost:3007/oauth2/metadata nodemon --ignore './public_html' --ignore './sites_enabled' --ignore './node_modules' -w ./ ./index.js",
"debug:mock.server": "cross-env NODE_ENV=test nodemon --ignore './public_html' --ignore './sites_enabled' --ignore './node_modules' -w ./ ./test/fakes/external-servers-mockup.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ProtocolONE/ptah.api.git"
},
"author": "Evgeniy Strigo",
"email": "[email protected]",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ProtocolONE/ptah.api/issues"
},
"homepage": "https://github.com/ProtocolONE/ptah.api#readme",
"dependencies": {
"@sentry/node": "^5.8.0",
"argv": "0.0.2",
"aws-sdk": "^2.686.0",
"bson-objectid": "^1.3.0",
"cross-env": "^5.2.1",
"decompress": "^4.2.1",
"dsn-parser": "^1.0.3",
"generate-password": "^1.5.1",
"is-valid-domain": "0.0.14",
"jsonwebtoken": "^8.5.1",
"koa": "^2.11.0",
"koa-body": "^4.1.1",
"koa-cache-control": "^2.0.0",
"koa-convert": "^1.2.0",
"koa-passport": "github:JamesKotov/koa-passport",
"koa-req-logger": "^1.5.3",
"koa-router": "^7.4.0",
"koa-unless": "^1.0.7",
"koa2-cors": "^2.0.6",
"lodash": "^4.17.19",
"md5-file": "^5.0.0",
"migrate-mongo": "^7.0.1",
"mongodb": "^3.3.4",
"passport-google-oauth2": "^0.2.0",
"passport-mailchimp": "^1.1.0",
"password-crypt": "^2.1.0",
"pino": "^5.13.6",
"postmark": "^2.5.3",
"punycode": "^2.1.1",
"request": "^2.88.0",
"request-promise-native": "^1.0.8",
"rimraf": "^2.7.1",
"sane-email-validation": "^3.0.1",
"string-template": "^1.0.0",
"stripe": "^8.92.0",
"url-join": "^4.0.1",
"url-parse": "^1.4.7",
"uuid": "^8.1.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"chai-spies": "^1.0.0",
"chai-validate-response": "github:JamesKotov/chai-validate-response#version-0.0.3",
"codecov": "^3.7.1",
"mocha": "^7.2.0",
"mock-http-server": "^1.4.1",
"nodemon": "^2.0.4",
"nyc": "^14.1.1"
}
}