-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 944 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
36
{
"name": "calendar-stats-backend",
"private": true,
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/maxpatiiuk/calendar-stats.git"
},
"author": "Max Patiiuk",
"homepage": "https://github.com/maxpatiiuk/calendar-stats#readme",
"bugs": {
"url": "https://github.com/maxpatiiuk/calendar-stats/issues"
},
"scripts": {
"build": "next build",
"dev": "next dev",
"debug": "NODE_OPTIONS='--inspect' next dev",
"start": "next start",
"test": "npm run type-check && npm run build",
"type-check": "tsc"
},
"dependencies": {
"github-markdown-css": "^5.5.1",
"marked": "^12.0.1",
"next": "^14.2.1"
},
"devDependencies": {
"@maxxxxxdlp/prettier-config": "^1.0.4",
"@types/node": "^20.12.7",
"@types/react": "18.2.78",
"prettier": "^3.2.5",
"typescript": "^5.4.5"
},
"prettier": "@maxxxxxdlp/prettier-config"
}