-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.06 KB
/
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
37
38
39
40
41
42
43
{
"name": "derecksnotes.com",
"version": "4.1.1",
"type": "module",
"repository": "[email protected]:dereckdemezquita/derecksnotes.com.git",
"scripts": {
"dev": "concurrently \"yarn dev:client\" \"yarn dev:server\"",
"dev:client": "cd client && yarn run dev",
"build:client": "cd client && yarn run build",
"dev:server": "cd server && bun run dev",
"prepend-jira-id": "bash commit-msg.sh",
"format": "prettier --write .",
"test": "jest",
"docker:client": "docker-compose -f ./docker-compose.client.yml up --build -d"
},
"prettier": {
"semi": true,
"trailingComma": "none",
"singleQuote": true,
"printWidth": 80,
"tabWidth": 4,
"useTabs": false,
"overrides": [
{
"files": "*.yml",
"options": {
"tabWidth": 2
}
}
]
},
"devDependencies": {
"@types/bun": "^1.1.4",
"@types/node": "^20.14.2",
"concurrently": "^8.2.2",
"husky": "^9.0.11",
"prettier": "^3.3.2",
"typescript": "^5.4.5"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}