generated from CS3219-AY2324S1/course-assessment-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 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
{
"name": "peerprep",
"version": "0.0.1",
"description": "A technical interview preparation platform and peer matching system called PeerPrep, where students can find peers to practice whiteboard-style interview questions together.",
"repository": "https://github.com/CS3219-AY2324S1/ay2324s1-course-assessment-g56",
"author": "Team 56",
"private": true,
"workspaces": [
"backend/*",
"frontend"
],
"devDependencies": {
"@types/eslint": "^8.44.2",
"@types/prettier": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.49.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-next": "13.4.19",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"markdownlint-cli": "^0.36.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"scripts": {
"lint": "prettier --check \"*/src/**/*.{ts,tsx}\" && eslint . --ext .ts,.js,.tsx,.jsx",
"lint:fix": "prettier --write \"*/src/**/*.{ts,tsx}\" && eslint . --ext .ts,.js,.tsx,.jsx --fix",
"postinstall": "husky install"
},
"packageManager": "[email protected]",
"lint-staged": {
"**/*.{ts,js,tsx,jsx}": [
"eslint --fix",
"prettier --write --ignore-unknown"
],
"**/*.md": [
"markdownlint --fix"
]
}
}