-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.13 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.13 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
{
"name": "coding-challenge",
"author": "Hadrian de Oliveira (hd-o)",
"license": "MIT",
"private": true,
"packageManager": "npm@10.8.3",
"engines": {
"node": ">=22"
},
"workspaces": [
"packages/*"
],
"scripts": {
"run:function-resolve": "cd packages/function-resolve && npm run test",
"run:functional-predicates": "cd packages/functional-predicates && npm run dev",
"run:jotai-writer-atom": "cd packages/jotai-writer-atom && npm run dev",
"run:reactive-todos": "cd packages/reactive-todos && npm run dev",
"run:rx-elevators": "cd packages/rx-elevators && npm run dev",
"run:skip-iterator": "cd packages/skip-iterator && npm run test",
"run:social-dashboard": "cd packages/social-dashboard && npm run dev",
"run:solid-calendar": "cd packages/solid-calendar && npm run dev",
"run:virtual-elevators": "cd packages/virtual-elevators && npm run dev",
"prepare": "husky"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"husky": "^9.1.7"
}
}