-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.73 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
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "classweb",
"version": "1.0.0",
"description": "For conducting online classes",
"main": "electron.js",
"build": {
"appId": "com.classweb",
"productName": "ClassWeb",
"win": {
"icon": "client/build/favicon.ico"
}
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"setup": "npm run client-install && npm run server-install && npm run db-install",
"db-install": "cd \"database collection creator\" && npm install && cd ..",
"server-install": "cd server && npm install && cd ..",
"client-install": "cd client && npm install && cd ..",
"server": "cd server && npm run start && cd ..",
"client": "cd client && npm run start && cd ..",
"start": "cd server && npm run server-start && cd ..",
"client-build": "cd client && npm run build && cd ..",
"post-install": "npm run client-install && npm run server-install",
"heroku-postbuild": "npm run post-install && npm run client-build",
"electron-build": "electron-builder",
"electron-dev": "concurrently \"cross-env BROWSER=none npm run dev\" \"wait-on http://localhost:3000 && electron .\"",
"dev": "concurrently -n 'server,client' -c 'red,green' \"npm run server\" \"npm run client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/indreshp135/ClassWeb.git"
},
"author": "Indresh P",
"license": "MIT",
"bugs": {
"url": "https://github.com/indreshp135/ClassWeb/issues"
},
"homepage": "https://github.com/indreshp135/ClassWeb#readme",
"dependencies": {
"concurrently": "^5.3.0",
"cross-env": "^7.0.2",
"electron-is-dev": "^1.2.0"
},
"devDependencies": {
"electron": "^10.1.3",
"electron-builder": "^22.9.1",
"wait-on": "^5.2.0"
}
}