-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 883 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 883 Bytes
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
{
"devDependencies": {
"chai": "^4.3.6",
"dotenv": "^16.0.0",
"mocha": "^9.2.1",
"request": "^2.88.2",
"should": "^13.2.3"
},
"dependencies": {
"husky": "^8.0.1"
},
"scripts": {
"build": "yarn workspace ogre-server build",
"prepare": "husky install",
"client:dev": "yarn workspace ogre-client dev",
"server:dev": "yarn workspace ogre-server dev",
"db:up": "yarn workspace ogre-server db:up",
"db:down": "yarn workspace ogre-server db:down",
"db:migrate": "yarn workspace ogre-server db:migrate",
"db:seed": "yarn workspace ogre-server db:seed",
"db:studio": "yarn workspace ogre-server db:studio",
"env:default": "yarn workspace ogre-server env:default",
"start": "yarn workspace ogre-server start"
},
"engines": {
"node": "18.x.x"
},
"workspaces": [
"packages/*"
],
"private": true
}