-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (33 loc) · 1006 Bytes
/
package.json
File metadata and controls
34 lines (33 loc) · 1006 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
{
"name": "server",
"version": "1.0.0",
"description": "server side of the application",
"main": "index.js",
"type": "module",
"scripts": {
"install-client": "npm install --prefix client",
"install-server": "npm install --prefix server",
"install": "npm run install-client && npm run install-server",
"start-client": "npm run start --prefix client",
"start-server": "npm run start --prefix server",
"start": "npm run start-client && npm run start-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ALUDeveloperStudentClub/alu-map.git"
},
"keywords": [
"hacktoberfest",
"alu-map"
],
"author": "alu-gdsc",
"license": "ISC",
"bugs": {
"url": "https://github.com/ALUDeveloperStudentClub/alu-map/issues"
},
"homepage": "https://github.com/ALUDeveloperStudentClub/alu-map#readme",
"dependencies": {
},
"devDependencies": {
}
}