-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
130 lines (130 loc) · 3.96 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "waka-server",
"version": "2.1.0",
"description": "The API that powers Waka.",
"main": "index.js",
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --copy-files --source-maps true && git log -1 > v.txt || git rev-parse HEAD > v.txt",
"test": "mocha",
"coverage": "nyc mocha",
"start": "node lib/waka-orchestrator/standalone.js | bunyan -L -o short",
"start:realtime": "node lib/waka-realtime/standalone.js | bunyan -L -o short",
"bs": "npm run build:js && npm start",
"install:proxy": "go get -v ./src/waka-go-proxy",
"build:proxy": "go build -o ./lib/waka-go-proxy/waka-go-proxy.exe ./src/waka-go-proxy/",
"document": "apidoc -i src/waka-orchestrator -i src/waka-go-proxy -i src/waka-worker -o dist/docs",
"lint": "eslint src --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dymajo/waka-server.git"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"include": [
"src"
],
"exclude": [
"lib",
"coverage",
"test",
"dist"
],
"reporter": [
"html",
"lcov",
"text-summary"
],
"all": true
},
"apidoc": {
"name": "Waka",
"title": "Waka API",
"header": {
"filename": "dist/header.md"
},
"url": "https://waka.app/a",
"sampleUrl": "/a"
},
"keywords": [],
"author": "Dymajo Ltd.",
"license": "MIT",
"bugs": {
"url": "https://github.com/dymajo/waka-server/issues"
},
"homepage": "https://github.com/dymajo/waka-server#readme",
"dependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@kubernetes/client-node": "^0.15.1",
"@types/body-parser": "^1.19.1",
"@types/bunyan": "^1.8.7",
"@types/express": "^4.17.13",
"@types/express-http-proxy": "^1.6.3",
"@types/ioredis": "^4.27.5",
"@types/mock-fs": "^4.13.1",
"@types/moment-timezone": "^0.5.30",
"@types/morgan": "^1.9.3",
"@types/mssql": "^6.0.8",
"@types/node": "^13.13.52",
"@types/redis": "^2.8.32",
"apidoc": "^0.19.1",
"aws-sdk": "^2.999.0",
"axios": "^0.22.0",
"body-parser": "^1.19.0",
"bunyan": "^1.8.15",
"colors": "^1.4.0",
"csv-parse": "^4.16.3",
"dotenv": "^8.6.0",
"express": "^4.17.1",
"express-http-proxy": "^1.6.2",
"extract-zip": "^1.7.0",
"ioredis": "^4.27.9",
"long": "^4.0.0",
"moment": "^2.29.1",
"moment-timezone": "^0.5.33",
"morgan": "^1.10.0",
"mssql": "^6.3.2",
"p-ratelimit": "^0.11.0",
"protobufjs": "^6.11.2",
"redis": "^2.8.0",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.20",
"stream-transform": "^2.1.3",
"ts-optchain": "^0.1.8",
"waka-manager": "git+https://git@github.com/dymajo/waka-manager.git"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.5",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.15.6",
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@types/chai": "^4.2.22",
"@types/mocha": "^5.2.7",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"chai": "^4.3.4",
"cross-env": "^6.0.3",
"eslint": "^6.8.0",
"eslint-config": "^0.3.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-promise": "^4.3.1",
"mocha": "^6.2.3",
"mock-fs": "^4.14.0",
"nyc": "^15.1.0",
"prettier": "^1.19.1",
"ts-mockito": "^2.6.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.10"
}
}