-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 994 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
32
33
34
35
36
37
38
39
{
"name": "@bensku/engram",
"version": "0.0.1",
"description": "",
"scripts": {
"all": "concurrently 'npm run dev -w backend' 'npm run dev -w frontend'",
"migrations": "npm run migrations -w backend",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/bensku/engram.git"
},
"author": "bensku",
"license": "MIT",
"bugs": {
"url": "https://github.com/bensku/engram/issues"
},
"homepage": "https://github.com/bensku/engram#readme",
"dependencies": {
"@bensku/engram-shared": "*"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"concurrently": "^8.2.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.0",
"openapi-typescript": "^6.7.4",
"prettier": "^3.2.5",
"typescript": "^5.4.2"
},
"workspaces": [
"shared",
"backend",
"frontend"
]
}