This repository has been archived by the owner on Dec 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (50 loc) · 1.79 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
47
48
49
50
51
{
"name": "melody-invest",
"private": true,
"workspaces": [
"server",
"client",
"interfaces",
"constants",
"helpers"
],
"version": "0.0.2",
"description": "",
"author": "Baozier",
"engines": {
"node": "^18.12.1",
"npm": "^9.1.2",
"redis-server": "^6.0.16",
"psql": "^15.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ValueMelody/melody-invest"
},
"scripts": {
"shared": "npm run build --workspace=constants && npm run build --workspace=helpers",
"dev": "concurrently \"npm run dev --workspace=client\" \"npm run dev --workspace=server\"",
"build:client": "npm run shared && npm run build --workspace=client",
"build:server": "npm run shared && npm run build --workspace=server",
"lint": "npm run lint --workspace=interfaces && npm run lint --workspace=constants && npm run lint --workspace=helpers && npm run lint --workspace=client && npm run lint --workspace=server",
"lint:fix": "npm run lint:fix --workspace=interfaces && npm run lint:fix --workspace=constants && npm run lint:fix --workspace=helpers && npm run lint:fix --workspace=client && npm run lint:fix --workspace=server",
"tsc": "npm run tsc --workspace=client && npm run tsc --workspace=server"
},
"devDependencies": {
"@swc/core": "^1.3.24",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"concurrently": "^7.0.0",
"eslint": "^8.10.0",
"eslint-config-react-app": "^7.0.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.29.3",
"pretty-format": "^29.3.1",
"ts-node": "^10.8.1",
"ts-node-dev": "^1.1.8",
"typescript": "^4.7.0"
}
}