-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 1.03 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
{
"name": "escape-room-generator",
"version": "1.3.1",
"description": "This is my honours project for BsC(Hons) Computing: Application Software Development at Robert Gordon University",
"main": "index.js",
"scripts": {
"start": "cd server && npm start",
"build": "cd client && npm run build",
"postbuild": "shx cp -r client/build/* server/public/",
"buildandstart": "npm run build && npm run start",
"dev": "concurrently \"cd server && npm run-script dev\" \"cd client && npm start\"",
"postinstall": "concurrently \"cd server && npm install\" \"cd client && npm install\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/AldoAbdn/Escape-Room-Generator.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/AldoAbdn/Escape-Room-Generator/issues"
},
"homepage": "https://github.com/AldoAbdn/Escape-Room-Generator#readme",
"dependencies": {
"@feathersjs/errors": "^4.3.11",
"concurrently": "^7.2.2",
"shx": "^0.3.4"
}
}