-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.02 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
{
"private": true,
"scripts": {
"build": "run-s 'rm -- app/*' tsc copy:configs build:modules clean:app",
"build:modules": "npm i --prod --prefix app/",
"clean:app": "rimraf app/*.spec.js app/package.json app/fixtures",
"copy:configs": "copyfiles -f package.json bin/swagger.json src/*.sh templates/*.json app/",
"lint:templates": "yamllint api/ templates/",
"package": "./scripts/package.sh",
"rm": "rimraf",
"server": "lite-server",
"start": "run-p server",
"swagger": "swagger project edit -sp ${SWAGGER_PORT:-8081} --host 0.0.0.0",
"test": "run-s test:e2e test:unit:once",
"test:e2e": "cucumberjs --compiler ts:ts-node/register",
"test:unit": "gulp",
"test:unit:once": "gulp test --verbose",
"tsc": "tsc"
},
"dependencies": {
"ajv": "^5.1.4",
"aws-sdk": "^2.80.0",
"json-stable-stringify": "^1.0.1",
"jsonpath": "^0.2.11",
"jsonwebtoken": "^7.3.0",
"jwks-rsa": "^1.1.1",
"netmask": "^1.0.6",
"request": "^2.81.0",
"request-promise-native": "^1.0.3",
"ssh2": "^0.5.4",
"uuid": "^3.0.1",
"winston": "^2.3.0"
},
"devDependencies": {
"@types/cucumber": "^0.0.33",
"@types/jasmine": "^2.5.47",
"@types/json-stable-stringify": "^1.0.31",
"@types/jsonpath": "^0.1.29",
"@types/jsonwebtoken": "^7.2.0",
"@types/netmask": "^1.0.29",
"@types/node": "^6.0.46",
"@types/request": "0.0.46",
"@types/request-promise-native": "^1.0.2",
"@types/ssh2": "^0.5.35",
"@types/uuid": "^2.0.29",
"@types/winston": "^2.2.0",
"copyfiles": "^1.0.0",
"cucumber": "^1.3.1",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.1",
"gulp-istanbul": "^1.1.1",
"gulp-jasmine": "^2.4.2",
"gulp-replace": "^0.5.4",
"gulp-sourcemaps": "^2.6.0",
"gulp-typescript": "^3.1.2",
"gulp-yaml": "^1.0.1",
"jasmine-reporters": "^2.2.0",
"lite-server": "^2.2.2",
"npm-run-all": "^3.1.1",
"remap-istanbul": "^0.7.0",
"rimraf": "^2.5.4",
"ts-node": "^3.1.0",
"typescript": "^2.3.0"
}
}