-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.14 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
{
"name": "fall-2021-project-group-centric-social-network-team-14",
"version": "1.0.0",
"description": "",
"engines": {
"npm": "<=8",
"node": "<=16"
},
"scripts": {
"server-install": "cd server && npm install",
"client-install": "cd client && npm install",
"server-lint": "cd server && npm run lint",
"client-lint": "cd client && npm run lint",
"server-test": "cd server && npm run test",
"client-test": "cd client && npm run test",
"install": "npm run server-install && npm run client-install",
"lint": "npm run server-lint && npm run client-lint",
"test": "npm run server-test && npm run client-test",
"build": "cd client && npm run build",
"start": "cd server && npm start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cis557/fall-2021-project-group-centric-social-network-team-14.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/cis557/fall-2021-project-group-centric-social-network-team-14/issues"
},
"homepage": "https://github.com/cis557/fall-2021-project-group-centric-social-network-team-14#readme"
}