forked from cadence-workflow/cadence-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.22 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
{
"name": "cadence-web",
"version": "3.4.0",
"description": "Cadence Web UI",
"main": "server/index.js",
"licence": "MIT",
"scripts": {
"dev": "NODE_ENV=development node server.js",
"start": "npm run build && NODE_ENV=production node server.js",
"test": "mocha server/test && mocha-chrome http://localhost:8090",
"test-server": "CADENCE_WEB_PORT=8090 TEST_RUN=ci node server.js",
"build": "webpack",
"build-production": "NODE_ENV=production npm run build"
},
"keywords": [
"uber",
"workflow",
"cadence",
"asynchronous"
],
"author": "Nathan Black <[email protected]>",
"engines": {
"node": "^8",
"npm": "^5"
},
"dependencies": {
"css-loader": "^0.28.7",
"deepmerge": "^2.0.0",
"extract-text-webpack-plugin": "^3.0.1",
"file-loader": "^1.1.5",
"friendly-querystring": "^0.2.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^2.30.1",
"html-webpack-template": "^6.1.0",
"is-ipv4-node": "^1.0.6",
"koa": "^2.3.0",
"koa-better-error-handler": "^1.3.0",
"koa-bodyparser": "^4.2.0",
"koa-compress": "^2.0.0",
"koa-onerror": "^3.1.0",
"koa-router": "^7.2.1",
"koa-send": "^4.1.1",
"koa-static": "^4.0.1",
"koa-webpack": "^2.0.3",
"lodash-es": "^4.17.4",
"long": "^3.2.0",
"lossless-json": "^1.0.2",
"moment": "^2.19.1",
"prismjs": "^1.14.0",
"promise.prototype.finally": "^3.1.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"tchannel": "^3.9.11",
"vis": "nathanboktae/vis#4.21.0a",
"vue": "^2.5.13",
"vue-date-range": "^2.2.6",
"vue-infinite-scroll": "^2.0.2",
"vue-js-modal": "^1.3.18",
"vue-loader": "^13.3.0",
"vue-prism-component": "^1.0.1",
"vue-router": "^3.0.1",
"vue-select": "nathanboktae/vue-select#after2.4",
"vue-split-panel": "^1.0.4",
"vue-style-loader": "^3.1.2",
"vue-template-compiler": "^2.5.2",
"webpack": "^3.10.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-dom": "^1.7.0",
"chai-things": "^0.2.0",
"fetch-mock": "^5.13.1",
"mocha": "^4.0.1",
"mocha-chrome": "^1.1.0",
"nathanboktae-browser-test-utils": "^0.1.0",
"supertest": "^3.0.0",
"webpack-hot-client": "^1.3.0"
}
}