forked from Dimatsa/Voice-Library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 960 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
27
28
29
{
"name": "voice-library",
"version": "0.1.0",
"private": true,
"description": "Website that splits recordings into individual words",
"scripts": {
"client": "cd client && npm start",
"server": "cd server && npm start",
"start": "concurrently \"npm run server\" \"npm run client\"",
"build": "(cd client && npm run build) && (cd server && npm run build)",
"postinstall": "(cd server && npm install) && (cd client && npm install)",
"lint": "(cd server && npm run lint) && (cd client && npm run lint)",
"serve": "cd server && npm run serve",
"deploy": "gcloud app deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dimatsa/Voice-Library.git"
},
"keywords": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/Dimatsa/Voice-Library/issues"
},
"homepage": "https://github.com/Dimatsa/Voice-Library#readme",
"devDependencies": {
"concurrently": "^6.1.0"
}
}