-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
42 lines (42 loc) · 1.35 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
{
"name": "bee-travels",
"private": true,
"workspaces": [
"services/**/*",
"packages/**/*"
],
"scripts": {
"lint": "eslint \"services/**/*.js\"",
"pretty": "prettier \"services/**/*.js\" --write",
"kp": "process=$(lsof -i :\"$@\" -t); [ -z \"$process\" ] || echo killing port \"$@\"; echo $process | xargs kill",
"kill-ports": "yarn kp 9000 && yarn kp 9001 && yarn kp 9101 && yarn kp 9102 && yarn kp 9103 && yarn kp 9201 && yarn kp 3000",
"test": "nyc --require esm --cache false mocha \"services/!(ui)/**/src/**/?(*.)test.js\"",
"start": "BEE_TRAVELS_ARGS=\"$@\" make start"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "2.x",
"@typescript-eslint/parser": "2.x",
"@yarnpkg/pnpify": "^2.0.0-rc.21",
"babel-eslint": "10.x",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"chai-things": "^0.2.0",
"eslint": "6.x",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "4.x",
"eslint-plugin-import": "2.x",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-openapi": "^0.0.3",
"eslint-plugin-react": "7.x",
"eslint-plugin-react-hooks": "2.x",
"esm": "^3.2.25",
"mocha": "^7.1.2",
"nyc": "^15.0.1",
"prettier": "^2.0.5",
"sinon": "^9.0.2"
},
"dependencies": {
"openapi-comment-parser": "^0.3.4"
}
}