-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.05 KB
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
{
"name": "vibe",
"private": true,
"version": "1.0.0",
"description": "Build Better Habits, Build a Better Life",
"keywords": [
"react",
"typescript",
"journal",
"nextjs",
"psychology",
"gamification",
"habits",
"mental-health",
"behaviours",
"habit-tracker",
"tailwindcss"
],
"license": "MIT",
"author": "Yaroslav Usenko <yar.usenko.inc@gmail.com> (https://www.yarus.app/)",
"type": "module",
"engines": {
"node": ">=18"
},
"packageManager": "npm@10.4.0",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"clean": "turbo clean && rm -rf node_modules && rm -rf .turbo",
"dev": "turbo dev --parallel",
"build": "turbo build",
"test": "turbo test",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{js,jsx,md}\""
},
"dependencies": {
"@pkg/config": "workspace",
"next": "^14.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4"
}
}