This repository has been archived by the owner on Mar 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.62 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
50
51
52
53
54
55
{
"name": "cse416_lusio",
"version": "1.0.0",
"description": "a Web application that will provide user-generated quiz platforms",
"main": "server/server.js",
"scripts": {
"start": "cd server && npm start",
"client-install": "cd client && npm install",
"server-install": "cd server && npm install",
"server": "npm run server --prefix server",
"client": "npm start --prefix client",
"dev": "npm run dev --prefix server",
"heroku-prebuild": "npm run server-install",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/xudyang1/CSE416_Lusio.git"
},
"author": {
"name": "Xudong Yang",
"email": "[email protected]",
"url": "https://github.com/xudyang1"
},
"contributors": [
{
"name": "Clare Lee",
"email": "[email protected]",
"url": "https://github.com/clarelee18"
},
{
"name": "Dajung Choi",
"email": "[email protected]",
"url": "https://github.com/dajchoi"
},
{
"name": "Liuxin Li",
"email": "[email protected]",
"url": "https://github.com/liuxinli1"
},
{
"name": "Xudong Yang",
"email": "[email protected]",
"url": "https://github.com/xudyang1"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/xudyang1/CSE416_Lusio/issues"
},
"homepage": "https://github.com/xudyang1/CSE416_Lusio#readme",
"dependencies": {},
"devDependencies": {}
}