-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.12 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
{
"private": true,
"workspaces": [
"client",
"server",
"shared",
"webview",
"shared-types"
],
"dependencies": {
"@altv/types-client": "^2.3.7",
"@altv/types-server": "^2.5.0",
"@altv/types-shared": "^1.3.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"concurrently": "^7.5.0",
"dts-bundle-generator": "^7.0.0",
"esbuild": "^0.15.12",
"eslint": "^7.30.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"lerna": "^6.0.1",
"typescript": "^4.8.4"
},
"type": "module",
"scripts": {
"dev:shared": "cd shared && yarn dev",
"dev:server": "cd server && yarn dev",
"dev:client": "cd client && yarn dev",
"dev:webview": "cd webview && yarn dev",
"dev": "concurrently 'yarn:dev:*'",
"build": "lerna run build",
"publ": "yarn build && lerna publish --force-publish"
}
}