-
Notifications
You must be signed in to change notification settings - Fork 247
/
Copy pathpackage.json
64 lines (64 loc) · 1.94 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
{
"name": "nodets-sample",
"version": "1.0.0",
"description": "",
"main": "dist/src/index.js",
"publishConfig": {
"registry": "http://nexus3-misanche-nexus.apps.na39.openshift.opentlc.com/repository/npm_internal/"
},
"dependencies": {
"bluebird": "^3.5.1",
"cls-hooked": "^4.2.2",
"cors": "2.8.4",
"debug": "^3.1.0",
"express": "4.16.2",
"js-yaml": "3.10.0",
"node-uuid": "^1.4.8",
"perfy": "^1.1.2",
"prom-client": "11.0.0",
"swagger-tools": "^0.10.4",
"winston": "^2.4.0"
},
"devDependencies": {
"@types/chai": "4.0.4",
"@types/chai-http": "3.0.3",
"@types/cls-hooked": "^4.2.0",
"@types/debug": "0.0.30",
"@types/express": "4.0.39",
"@types/mocha": "2.2.43",
"@types/node": "8.0.46",
"@types/node-uuid": "0.0.28",
"@types/swagger-tools": "0.10.4",
"@types/winston": "^2.3.7",
"chai": "4.1.2",
"chai-http": "^4.2.0",
"cpx": "1.5.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.6",
"shelljs": "^0.7.8",
"sinon": "^4.1.5",
"supertest": "3.0.0",
"ts-mocha": "1.0.3",
"ts-node": "3.3.0",
"tslint": "5.8.0",
"typescript": "2.5.3"
},
"scripts": {
"clean": "rm -rf dist",
"build:copy": "cpx \"src/**/*.yaml\" dist/",
"start": "DEBUG=fes:* node dist/index.js",
"build:live": "npm run clean && npm run lint && tsc -p tsconfig.json && npm run build:copy",
"test": "DEBUG=fes:* TS_NODE_CACHE=false ./node_modules/.bin/mocha --compilers ts:ts-node/register ./test/* --exit",
"build:dev": "nodemon --exec ts-node -- ./src/index.ts",
"dev": "DEBUG=fes:* TS_NODE_CACHE=false npm run build:dev",
"lint": "tslint -p tsconfig.json",
"updateSwagger": "node scripts/updateSwagger.js",
"updateAll": "node scripts/updateCode.js",
"testOne": "TS_NODE_CACHE=false ./node_modules/.bin/mocha --compilers ts:ts-node/register "
},
"engines": {
"node": ">6.11.0"
},
"author": "Prima",
"license": "ISC"
}