-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.5 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
{
"name": "make-me-project",
"version": "1.0.0",
"description": "A platform that provides unique DIY (Do It Yourself) project suggestions using OpenAI. Explore a variety of projects, their materials, and steps to create them.",
"main": "index.js",
"devDependencies": {
"concurrently": "^8.2.2",
"husky": "^9.0.11",
"lint-staged": "^15.2.2"
},
"scripts": {
"dev:client": "cd client && npm run dev",
"build:client": "cd client && npm run build",
"dev:server": "cd server && npm run watch:dev",
"build:server": "cd server && npm run build",
"docker:up": "cd server && npm run docker:up",
"docker:build": "cd server && npm run docker:build",
"dev": "concurrently \"npm run dev:client\" \"npm run dev:server\"",
"dev:docker": "concurrently \"npm run dev:client\" \"npm run docker:up\"",
"build:all": "npm install && concurrently \"npm run build:client\" \"npm run build:server\" \"npm run docker:build\"",
"lint:all": "cd server && npm run lint && cd ../client && npm run lint:fix",
"outdated": "cd server && npm outdated && cd ../client && npm outdated"
},
"husky": {
"hooks": {
"pre-commit": "cd client && npx lint-staged && cd ../server && npx lint-staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kevin-Umali/diyspire.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Kevin-Umali/diyspire/issues"
},
"homepage": "https://github.com/Kevin-Umali/diyspire#readme"
}