-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.02 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
{
"name": "tuwuitter",
"version": "1.0.0",
"private": "true",
"main": "index.js",
"repository": "[email protected]:wrongbyte/tuwuitter.git",
"author": "wrongbyte <[email protected]>",
"license": "MIT",
"engines": { "node": "17.9.0" },
"workspaces": {
"packages": [
"packages/*"
]
},
"devDependencies": {
"concurrently": "^7.3.0",
"eslint": "^8.20.0",
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"typescript": "^4.7.4"
},
"scripts": {
"prepare": "husky install",
"dev": "yarn dev:all",
"postinstall": "yarn workspace @tuwuitter/client relay && yarn workspace @tuwuitter/client webpack",
"start": "yarn workspace @tuwuitter/server start",
"dev:all": "concurrently \"yarn dev:server\" \"yarn dev:client\"",
"dev:server": "yarn workspace @tuwuitter/server dev",
"dev:client": "yarn workspace @tuwuitter/client start"
},
"dependencies": {
"commitlint": "^17.0.3",
"install-peers": "^1.0.4"
}
}