-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.34 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
44
45
46
{
"name": "reactylon",
"description": "Workspace for Reactylon framework.",
"repository": {
"type": "git",
"url": "git+https://github.com/simonedevit/reactylon"
},
"scripts": {
"prepare": "husky",
"init": "npm ci",
"clean": "rm -rf node_modules package-lock.json",
"start:common": "npm run start --workspace @dvmstudios/reactylon-common",
"start:library": "npm run start --workspace reactylon",
"start:generator": "npm run start --workspace @dvmstudios/reactylon-generator",
"start": "concurrently \"npm run start:*\"",
"build": "npm run build --workspaces"
},
"keywords": [],
"lint-staged": {
"*.{ts,tsx}": [
"tsc-files --noEmit",
"prettier --write"
]
},
"workspaces": [
"./packages/common",
"./packages/generator",
"./packages/library"
],
"devDependencies": {
"concurrently": "^8.2.1",
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "3.2.5",
"tsc-files": "^1.1.4",
"typescript": "^5.4.5"
},
"engines": {
"node": "^22.11.0",
"npm": "^10.9.0"
},
"author": "Simone De Vittorio",
"license": "MIT"
}