-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 2.51 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
{
"name": "workflows-proxy",
"version": "1.0.0",
"main": "index.js",
"license": "BSD-3-Clause",
"author": "Ken Garber <[email protected]>",
"dependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.5",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.3.4",
"@babel/preset-flow": "^7.0.0",
"@babel/register": "^7.0.0",
"@babel/runtime": "^7.3.4",
"@fbc-hub/keycloak-client": "^1.0.0",
"babel-plugin-lodash": "^3.3.4",
"body-parser": "^1.18.3",
"eslint-plugin-graphql": "^4.0.0",
"express": "^4.16.3",
"http-proxy": "^1.18.1",
"jsonpath-plus": "^4.0.0",
"keycloak-admin": "^1.13.0",
"moment": "^2.24.0",
"qs": "^6.9.3",
"stream-array": "^1.1.2",
"stream-to-string": "^1.2.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"babel-jest": "^24.9.0",
"eslint": "^6.0.1",
"eslint-config-fb-strict": "^24.3.0",
"eslint-config-fbcnms": "^0.1.0",
"eslint-config-prettier": "^3.1.1",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-eslint-comments": "^3.0.1",
"eslint-plugin-flowtype": "^4.3.0",
"eslint-plugin-header": "^3.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jest": "^22.7.1",
"eslint-plugin-jsx-a11y": "^6.2.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": "^24.9.0",
"nodemon": "^2.0.4",
"prettier": "1.19.1",
"regenerator-runtime": "^0.13.2",
"rimraf": "^3.0.0"
},
"resolutions": {
"@babel/runtime": "^7.3.4"
},
"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"
}
}