-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.31 KB
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
40
{
"name": "team7",
"version": "1.0.0",
"description": "Personal Network Graph - CS 144 Final Project",
"main": "server/index.js",
"scripts": {
"test": "npm run test --prefix server",
"dev": "concurrently \"npm run dev --prefix client\" \"npm run dev --prefix server\"",
"dev:client": "npm run dev --prefix client",
"dev:server": "npm run dev --prefix server",
"build": "npm run build --prefix client && npm run build --prefix server",
"build:client": "npm run build --prefix client",
"build:server": "npm run build --prefix server",
"lint": "npm run lint --prefix client",
"start": "node server/index.js",
"docker:build": "node scripts/docker-build.js",
"docker:run": "docker rm -f team7 2>/dev/null; docker run --rm --name team7 --env-file server/.env -e NODE_ENV=production -e PORT=3000 -p 3000:3000 team7:latest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Prof-Rosario-UCLA/team7.git"
},
"keywords": [
"graph",
"contacts",
"network",
"firebase",
"react"
],
"author": "Team 7",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/Prof-Rosario-UCLA/team7/issues"
},
"homepage": "https://github.com/Prof-Rosario-UCLA/team7#readme",
"devDependencies": {
"concurrently": "^10.0.3"
}
}