-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
75 lines (75 loc) · 2.66 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
{
"name": "workflows-proxy",
"version": "2.1.1",
"main": "index.js",
"license": "BSD-3-Clause",
"author": "Ken Garber <[email protected]>",
"dependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.20.5",
"@babel/node": "^7.17.10",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.7",
"@babel/plugin-proposal-optional-chaining": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@babel/preset-flow": "^7.16.7",
"@babel/register": "^7.17.7",
"@babel/runtime": "^7.17.9",
"babel-plugin-lodash": "^3.3.4",
"body-parser": "^1.20.0",
"dotenv": "^16.0.1",
"eslint-plugin-flowtype": "^8.0.3",
"express": "^4.18.1",
"helmet": "^5.0.2",
"http-proxy": "^1.18.1",
"jsonpath-plus": "^6.0.1",
"log-timestamp": "^0.3.0",
"moment": "^2.29.3",
"qs": "^6.10.3",
"stream-array": "^1.1.2",
"stream-to-string": "^1.2.0",
"swagger-ui-express": "^4.4.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-syntax-flow": "^7.18.6",
"@babel/plugin-transform-react-jsx": "^7.19.0",
"babel-jest": "^29.3.1",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-lint": "^1.0.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-sort-imports-es6-autofix": "^0.5.0",
"flow-bin": "^0.126.1",
"flow-remove-types": "^2.125.1",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"prettier": "^2.8.0",
"regenerator-runtime": "^0.13.2",
"request": "^2.88.2",
"rimraf": "^3.0.0"
},
"resolutions": {
"@babel/runtime": "^7.17.9"
},
"scripts": {
"transpile": "babel src -d lib --copy-files",
"eslint": "./node_modules/.bin/eslint --ignore-path .eslintignore src/",
"jest": "echo 'Dont run jest directly, use \"yarn run test\"' && exit 1",
"test": "NODE_ENV=test jest --coverage",
"test:ci": "NODE_ENV=test jest --coverage -w 1",
"flow": "flow",
"flow-typed-install": "flow-typed --flowVersion $(flow version --json | jq -r .semver) install --",
"start": "node --unhandled-rejections=strict lib/index.js",
"start:dev": "nodemon --exitcrash --unhandled-rejections=strict --inspect=0.0.0.0:9229 --exec babel-node src/index.js",
"formatter:check": "prettier -c src/**/*.{js,html}",
"formatter": "prettier --write src/**/*.{js,html}"
}
}