-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.84 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
76
77
78
79
{
"name": "code2gather",
"version": "0.0.1",
"description": "Code2Gather, GetHired2Gather",
"repository": "https://github.com/CS3219-SE-Principles-and-Patterns/cs3219-project-ay2122-2122-s1-g32",
"author": "Team 32",
"private": true,
"workspaces": [
"frontend"
],
"devDependencies": {
"@commitlint/cli": "^14.1.0",
"@commitlint/config-conventional": "^14.1.0",
"@commitlint/cz-commitlint": "^14.1.0",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"commitizen": "^4.2.4",
"eslint": "7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^25.2.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"google-protobuf": "^3.17.3",
"husky": "^7.0.4",
"lint-staged": "^11.2.6",
"markdownlint-cli": "^0.29.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"prettier-plugin-prisma": "^3.3.0",
"protoc-gen-ts": "^0.6.0",
"typescript": "^4.4.4"
},
"scripts": {
"frontend": "yarn workspace frontend",
"commit": "git-cz",
"lint": "run-p lint:*",
"lint:js": "eslint . --ext .ts,.js,.tsx,.jsx",
"lint:md": "markdownlint '**/*.md' --ignore-path .markdownlintignore",
"lint:frontend": "cd frontend && yarn lint",
"lint:code-executor": "cd code-executor && yarn lint",
"lint:room": "cd room && yarn lint",
"pre-commit": "run-s pre-commit:*",
"pre-commit:root": "lint-staged",
"pre-commit:frontend": "cd frontend && yarn lint-staged",
"pre-commit:room": "cd room && yarn lint-staged",
"pre-commit:code-executor": "cd code-executor && yarn lint-staged",
"protobuf": "./compile-proto-messages.sh",
"install-all": "yarn install && run-p install-all:*",
"install-all-ci": "yarn install && run-s install-all:*",
"install-all:auth": "cd auth && yarn install",
"install-all:code-executor": "cd code-executor && yarn install",
"install-all:coding": "cd coding && yarn install",
"install-all:gateway": "cd gateway && yarn install",
"install-all:history": "cd history && yarn install",
"install-all:pairing": "cd pairing && yarn install",
"install-all:room": "cd room && yarn install",
"install-all:video": "cd video && yarn install",
"prepare": "node -e \"if(require('fs').existsSync('.git')){process.exit(1)}\" || husky install",
"start": "docker-compose -f docker-compose.local.yml up",
"stop": "docker-compose -f docker-compose.local.yml down"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"lint-staged": {
"**/*.{ts,js,tsx,jsx}": [
"eslint --fix"
],
"**/*.md": [
"markdownlint --fix"
]
}
}