This repository has been archived by the owner on May 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
119 lines (119 loc) · 3.55 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
{
"name": "temporal-web",
"version": "1.15.0",
"description": "Temporal Web UI",
"main": "server/index.js",
"license": "MIT",
"scripts": {
"dev": "NODE_ENV=development node server.js",
"eslint": "eslint --ext .js,.vue client --fix",
"start": "npm run build && NODE_ENV=production node server.js",
"test:unit": "TZ=utc jest",
"test:ci": "cypress run --headless --quiet",
"build": "webpack",
"build-production": "NODE_ENV=production npm run build"
},
"keywords": [
"temporalio",
"workflow",
"temporal",
"asynchronous"
],
"author": "Temporal <[email protected]>",
"engines": {
"node": "^14",
"npm": "^6"
},
"dependencies": {
"@babel/core": "^7.8.3",
"@babel/plugin-transform-regenerator": "^7.8.7",
"@babel/polyfill": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@grpc/proto-loader": "^0.5.6",
"babel-loader": "^8.0.6",
"babel-plugin-module-resolver": "^4.0.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"bluebird": "^3.7.2",
"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",
"hammerjs": "2.0.8",
"propagating-hammerjs": "1.4.7",
"grpc": "^1.24.6",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^2.30.1",
"html-webpack-template": "^6.1.0",
"js-yaml": "^3.14.0",
"koa": "^2.3.0",
"koa-better-error-handler": "^1.3.0",
"koa-bodyparser": "^4.2.0",
"koa-compress": "^2.0.0",
"koa-csrf": "^3.0.8",
"koa-onerror": "^3.1.0",
"koa-passport": "^4.1.3",
"koa-router": "^7.2.1",
"koa-send": "^4.1.1",
"koa-session": "^6.1.0",
"koa-static": "^4.0.1",
"koa-webpack": "^2.0.3",
"lodash-es": "^4.17.21",
"long": "^3.2.0",
"lossless-json": "^1.0.2",
"moment": "^2.29.4",
"openid-client": "^4.2.1",
"prismjs": "^1.27.0",
"promise.prototype.finally": "^3.1.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"vis": "nathanboktae/vis#4.21.0a",
"vue": "^2.5.13",
"vue-infinite-scroll": "^2.0.2",
"vue-js-modal": "^1.3.18",
"vue-loader": "^13.0.1",
"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",
"vue-virtual-scroller": "^1.0.10",
"vue2-datepicker": "^3.4.1",
"webpack": "^3.12.0",
"websocket-as-promised": "^2.0.1"
},
"devDependencies": {
"atob": "^2.1.2",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"chai": "^4.1.2",
"chai-dom": "^1.7.0",
"chai-string": "^1.5.0",
"chai-things": "^0.2.0",
"cypress": "^6.8.0",
"eslint": "^7.21.0",
"eslint-config-fusion": "^6.1.0",
"eslint-config-prettier": "^6.9.0",
"eslint-import-resolver-babel-module": "^5.1.2",
"eslint-import-resolver-webpack": "^0.12.1",
"eslint-plugin-chai-friendly": "^0.5.0",
"eslint-plugin-cup": "^2.0.2",
"eslint-plugin-flowtype": "^4.6.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jest": "^23.6.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-react-hooks": "^2.3.0",
"eslint-plugin-vue": "^6.1.2",
"fetch-mock": "^5.13.1",
"jest": "^24.9.0",
"jest-fetch-mock": "^3.0.3",
"nathanboktae-browser-test-utils": "^0.1.0",
"node-abort-controller": "^1.0.4",
"prettier": "^1.19.1",
"supertest": "^3.0.0",
"webpack-hot-client": "^1.3.0"
}
}