This repository has been archived by the owner on Sep 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.68 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
{
"name": "mqfind",
"version": "1.0.0",
"description": "Query listings of accommodation near Macquarie University campuses",
"repository": "https://github.com/maacpiash/MqFind",
"author": {
"name": "Mohammad Abdul Ahad Chowdhury",
"email": "[email protected]",
"url": "https://www.maacpiash.com"
},
"license": "AGPL-3.0-only",
"private": true,
"bugs": {
"url": "https://github.com/maacpiash/MqFind/issues",
"email": "[email protected]"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run --parallel build",
"build:client": "lerna run --stream --scope @mqfind/client build",
"build:server": "lerna run --stream --scope @mqfind/server build",
"clean": "lerna run --parallel clean",
"dev": "lerna run --parallel dev",
"compose:up": "docker-compose up",
"dev:client": "lerna run --stream --scope @mqfind/client dev",
"dev:server": "lerna run --stream --scope @mqfind/server dev",
"lint": "lerna run --parallel lint",
"start": "lerna run --parallel start",
"start:client": "lerna run --stream --scope @mqfind/client start",
"start:server": "lerna run --stream --scope @mqfind/server start"
},
"workspaces": [
"packages/*"
],
"dependencies": {
"tslib": "^2.0.1"
},
"devDependencies": {
"@types/node": "^14.0.25",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.5",
"lerna": "^3.20.2",
"prettier": "^2.1.0",
"typescript": "^4.0.2"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
}
}