-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1007 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 1007 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
33
34
35
36
{
"name": "devcircle",
"version": "1.0.0",
"description": "Mutual Growth Platform for College Coders",
"scripts": {
"setup": "bash setup.sh",
"install:all": "npm install --prefix server && npm install --prefix client",
"dev:server": "cd server && npm run dev",
"dev:client": "cd client && npm start",
"build:server": "cd server && npm run build",
"build:client": "cd client && npm run build",
"build:all": "npm run build:server && npm run build:client",
"start:server": "cd server && npm start",
"docker:up": "docker-compose up --build",
"docker:down": "docker-compose down",
"docker:clean": "docker-compose down -v"
},
"repository": {
"type": "git",
"url": "https://github.com/yourusername/DevCircle.git"
},
"keywords": [
"college",
"developers",
"community",
"peer-to-peer",
"help",
"open-source"
],
"author": "Your Name",
"license": "MIT",
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
}
}