-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 908 Bytes
/
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
{
"name": "keystroker",
"version": "1.0.0",
"description": "",
"main": "backend/build/app.js",
"scripts": {
"build": "npm run build-backend && npm run build-frontend && npm run copy-frontend",
"build-backend": "cd backend/ && npm install && tsc --build",
"build-frontend": "cd frontend && npm install && npm run build",
"copy-frontend": "cp -r frontend/build/ backend/build/backend/src/dist",
"posinstall": "cd backend/ && npm install",
"start": "cd backend && npm install && node build/backend/src/app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thesauri/keystroker.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/thesauri/keystroker/issues"
},
"homepage": "https://github.com/thesauri/keystroker#readme",
"devDependencies": {}
}