-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.13 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
37
{
"name": "qoverflow",
"version": "1.0.0",
"description": "qOverflow client and server",
"main": "index.js",
"homepage": "https://github.com/spicecat/qOverflow",
"scripts": {
"start": "concurrently \"npm start -w client\" \"npm start -w server\"",
"start:server": "npm start -w server",
"start:client": "npm start -w client",
"start:prod": "npm run prod -w server",
"prestart:prod": "npm ci && npm run build",
"dev": "npm run dev -w client & npm run dev -w server",
"build": "npm run build -w client",
"predeploy": "npm run predeploy -w client",
"deploy": "npm run deploy -w client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spicecat/qOverflow.git"
},
"author": "C4 Patino, Tejus Krishan, Andy Teh",
"license": "ISC",
"bugs": {
"url": "https://github.com/spicecat/qOverflow/issues"
},
"workspaces": [
"client",
"server"
],
"devDependencies": {
"concurrently": "^7.3.0"
},
"dependencies": {
"react-copy-to-clipboard": "^5.1.0"
}
}