-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathpackage.json
31 lines (31 loc) · 965 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*",
"integrations/*"
],
"scripts": {
"build": "npx lerna run build",
"format": "npx lerna run format",
"lint": "npx lerna run lint",
"format:check": "npx lerna run format:check",
"lint:check": "npx lerna run lint:check",
"packages:clean": "tsc -b --clean packages",
"dev": "concurrently \"npm run dev:core\" \"npm run dev:sample-app\" --names \"@intentjs/core,sample-app\" --prefix-colors \"blue,green\"",
"dev:core": "npm run dev -w packages/core",
"dev:sample-app": "npm run dev -w integrations/sample-app",
"prepare": "husky"
},
"dependencies": {
"concurrently": "^9.1.0",
"hyper-express": "^6.17.2",
"uWebSockets.js": "github:uNetworking/uWebSockets.js#v20.48.0"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"husky": "^9.1.6",
"lerna": "^8.1.8"
}
}