-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.06 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
34
35
36
{
"name": "remembrance-page",
"version": "1.0.0",
"description": "remembrance-page for Jerry Krikava",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Tim-Quattrochi/Remembrance-Page.git"
},
"workspaces": [
"client",
"server"
],
"keywords": [
"guestbook",
"tribute"
],
"author": "Tim Quattrochi",
"license": "ISC",
"bugs": {
"url": "https://github.com/Tim-Quattrochi/Remembrance-Page/issues"
},
"homepage": "https://github.com/Tim-Quattrochi/Remembrance-Page#readme",
"scripts": {
"client": "npm run dev --workspace=client",
"server": "npm run start --workspace=server",
"start": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client\"",
"build": "concurrently --kill-others-on-fail \"npm run build --workspace=client\" \"npm run build --workspace=server\"",
"test:client": "cd client && npm test",
"test:server": "cd server && jest",
"test": "npm run test:client && npm run test:server"
},
"dependencies": {
"concurrently": "^8.1.0"
}
}