-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.62 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
{
"name": "node-open-match",
"version": "1.0.0",
"license": "UNLICENSED",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"preinstall": "node scripts/check-yarn.js",
"build": "tsc -b packages",
"clean": "node scripts/clean.js",
"clean:all": "node scripts/clean.js all",
"lint": "eslint packages/**/*.{js,ts,tsx}",
"add:dep": "node scripts/add-sub-dependency.js false",
"add:dep:dev": "node scripts/add-sub-dependency.js true",
"start:director": "cd packages/director && yarn start",
"start:frontend": "cd packages/frontend && yarn start",
"start:match-function": "cd packages/match-function && yarn start",
"publish:api": "yarn build && yarn publish --access public ./packages/api"
},
"dependencies": {
"async-sema": "^3.1.1",
"body-parser": "^1.20.1",
"concat-stream": "^2.0.0",
"config": "^3.3.7",
"express": "^4.17.3",
"js-yaml": "^4.1.0",
"uuid": "^9.0.0",
"wait-on": "^7.0.1"
},
"devDependencies": {
"@types/concat-stream": "^2.0.0",
"@types/config": "^0.0.41",
"@types/express": "^4.17.13",
"@types/node": "^18.11.11",
"@types/uuid": "^9.0.0",
"@types/wait-on": "^5.3.1",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"cross-env": "^7.0.3",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.0.0",
"lerna": "^4.0.0",
"prettier": "^2.5.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}