-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 817 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 817 Bytes
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
{
"name": "yacma",
"version": "1.0.0",
"description": "Yet Another (Distributed) Classroom Management App",
"devDependencies": {
"concurrently": "^5.3.0",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"prettier": "^2.2.0",
"typescript": "^4.1.2"
},
"scripts": {
"installer": "npm i && npm i --prefix client && npm i --prefix api",
"format": "prettier --write **/*.{ts,tsx,css}",
"dev:api": "npm run dev --prefix api",
"dev:client": "npm start --prefix client",
"dev": "concurrently \"npm:dev:api\" \"npm:dev:client\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/boubascript/yacma.git"
},
"author": "yacma youth",
"license": "MIT",
"dependencies": {}
}