-
-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 671 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 671 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "mediatracker",
"private": true,
"scripts": {
"postinstall": "cd server && npm install && cd ../client && npm install",
"build": "npm run build --prefix server && npm run build --prefix client",
"start": "npm run start --prefix server",
"format": "prettier --list-different --write .",
"lint": "npm run lint --prefix client && npm run lint --prefix server",
"test": "npm run test --prefix server",
"test:coverage": "npm run test:coverage --prefix server"
},
"devDependencies": {
"@types/jest": "^28.1.1",
"prettier": "^2.6.2"
},
"dependencies": {
"@types/passport": "^1.0.7",
"url-join": "^4.0.1"
}
}