This repository has been archived by the owner on Oct 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
103 lines (103 loc) · 3.99 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"binary": {
"module_name": "server.js",
"module_path": ".",
"host": "localhost"
},
"name": "waffle-server-mongoless",
"description": "Server for keeping and serving ddf data",
"main": "server.js",
"version": "3.1.22",
"private": true,
"scripts": {
"tsc": "./node_modules/.bin/tsc --project tsconfig.json",
"prestart": "npm run tsc",
"start": "node --max_old_space_size=10000 server.js",
"publish": "GCP_STACK_ACTION=publish node ./deployment/index.js | bunyan",
"publish:local": "NODE_ENV=local npm run publish",
"publish:dev": "NODE_ENV=dev npm run publish",
"publish:prod": "NODE_ENV=prod npm run publish",
"prepublish": "npm run tsc",
"preunpublish": "npm run tsc",
"unpublish": "GCP_STACK_ACTION=unpublish node ./deployment/index.js | bunyan",
"unpublish:local": "NODE_ENV=local npm run unpublish",
"unpublish:dev": "NODE_ENV=dev npm run unpublish",
"unpublish:prod": "NODE_ENV=prod npm run unpublish",
"test": "npm run specs:minimalist",
"just-test-bb": "mocha --require ts-node/register --timeout 200000 --max-old-space-size=10000 test-bb/**/*.spec.ts",
"test-bb": "echo [] > test-bb-options.tmp && npm run just-test-bb",
"test-bb-custom": "ts-node test-bb/prompt.ts && npm run just-test-bb",
"tslint:src": "./node_modules/.bin/tslint -c ./tslint.json 'application.ts'",
"tslint": "npm run tslint:src",
"lint": "npm run tslint",
"spec": "npm run specs",
"specs": "npm run specs:app && npm run specs:publish",
"prespecs": "npm run tsc",
"integration:publish": "mocha --exit --reporter-options reportDir=specReports,reportFilename=specReport --timeout 20000 --require ts-node/register --require ./mocha.env.ts 'test/autodeploy/**/*.int-spec.ts'",
"specs:publish": "mocha --exit --reporter-options reportDir=specReports,reportFilename=specReport --timeout 20000 --require ts-node/register --require ./mocha.env.ts 'test/autodeploy/**/*spec.ts'",
"specs:app": "mocha --exit --reporter-options reportDir=specReports,reportFilename=specReport --timeout 20000 --require ts-node/register --require ./mocha.env.ts 'test/**/application.spec.ts'",
"specs:minimalist": "npm run specs -- --reporter mocha-minimalist-reporter"
},
"dependencies": {
"@types/async": "2.0.49",
"@types/body-parser": "1.17.0",
"@types/core-js": "2.5.0",
"@types/express": "4.11.1",
"@types/lodash": "4.14.116",
"@types/node": "10.5.7",
"@types/passport": "0.4.5",
"@types/shelljs": "0.8.0",
"JSONStream": "1.3.3",
"async": "2.6.1",
"body-parser": "1.18.3",
"bunyan": "1.8.12",
"bunyan-prettystream": "0.1.3",
"compression": "1.7.2",
"cookie-parser": "1.4.3",
"cors": "2.8.4",
"cross-project-diagnostics": "0.1.2",
"ddf-query-validator": "1.4.0",
"ddf-validation": "1.18.2",
"debug": "3.1.0",
"express": "4.16.3",
"express-bunyan-logger": "1.3.3",
"express-redis-cache": "1.1.1",
"express-session": "1.15.6",
"forever": "0.15.3",
"fs-extra": "6.0.1",
"gcp-ddf-resource-reader": "1.0.1",
"http-errors": "1.6.3",
"influx": "5.0.7",
"lodash": "4.17.10",
"mkdirp": "0.5.1",
"node-rsa": "1.0.0",
"passport": "0.4.0",
"rxjs": "6.2.2",
"rxjs-compat": "6.2.2",
"semver-regex": "2.0.0",
"shelljs": "0.8.2",
"threads": "0.12.0",
"typescript": "3.0.1",
"urlon": "2.0.1",
"vizabi-ddfcsv-reader": "3.0.11"
},
"devDependencies": {
"@types/chai": "4.1.3",
"@types/mocha": "5.2.0",
"@types/sinon": "5.0.0",
"@types/supertest": "2.0.4",
"bb-tests-provider": "0.2.3",
"chai": "4.1.2",
"codelyzer": "4.3.0",
"inquirer": "6.1.0",
"mocha": "5.2.0",
"mocha-minimalist-reporter": "1.1.0",
"sinon": "5.0.10",
"sinon-express-mock": "2.0.4",
"supertest": "3.1.0",
"ts-node": "7.0.0",
"tslint": "5.10.0",
"tslint-config-valorsoft": "git://github.com/korel-san/tslint-config-valorsoft.git#node-typescript-2.5.2",
"tslint-no-unused-expression-chai": "0.1.3"
}
}