forked from HackYourFuture/dojo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 808 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 808 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
{
"name": "dojo",
"version": "1.0.0",
"description": "",
"main": "",
"dependencies": {},
"devDependencies": {
"prettier": "^3.3.2"
},
"scripts": {
"build": "npm run build:client && npm run build:server",
"build:client": "cd client && npm run build",
"build:server": "cd server && npm run build",
"setup": "npm run setup:client && npm run setup:server",
"setup:client": "cd client && npm run setup && cd ..",
"setup:server": "cd server && npm run setup && cd ..",
"start": "cd server && npm start",
"heroku-prebuild": "npm run setup",
"heroku-postbuild": "npm run build",
"format": "prettier --write ./**/**/**/*.{tsx,css,ts,md} --config ./.prettierrc"
},
"author": "HackYourFuture",
"license": "ISC",
"engines": {
"node": ">=22.x"
}
}