-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
35 lines (35 loc) · 1006 Bytes
/
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
{
"name": "web-planer",
"version": "1.0.0",
"private": true,
"description": "The Solvro Planer project aims to create an intuitive and user-friendly application that helps students plan their academic schedule",
"keywords": [],
"license": "AGPL-3.0-only",
"author": "",
"type": "module",
"main": "index.js",
"scripts": {
"db": "docker compose up",
"format": "prettier --write .",
"format:check": "prettier --check .",
"postinstall": "cd frontend && npm install && cd ../backend && npm install",
"lint": "eslint . --max-warnings=0",
"prepare": "husky",
"typecheck": "tsc --noEmit"
},
"lint-staged": {
"*.md": "prettier --write"
},
"prettier": "@solvro/config/prettier",
"dependencies": {
"@maximemrf/adonisjs-jwt": "^0.2.2",
"adonis-autoswagger": "^3.64.0"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@solvro/config": "^1.13.3",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2"
}
}