-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 991 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 991 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
{
"name": "cs9-knowledgerocket",
"version": "1.0.0",
"description": "",
"main": "server/server.js",
"scripts": {
"test:client": "cd client && npm run test:once && cd ..",
"test:server": "cd server && npm run test:once && cd ..",
"test": "npm run test:client && npm run test:server",
"install": "cd client && npm i && cd .. && cd server && npm i && cd ..",
"postinstall": "npm run build",
"build:client": "cd client && npm run build && cd ..",
"build": "npm run build:client",
"start": "cd server && npm start",
"sendmail": "curl \"$BASE_URL/api/mail\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lambda-School-Labs/CS9-KnowledgeRocket.git"
},
"author": "",
"bugs": {
"url": "https://github.com/Lambda-School-Labs/CS9-KnowledgeRocket/issues"
},
"homepage": "https://github.com/Lambda-School-Labs/CS9-KnowledgeRocket#readme"
}