-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.58 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.58 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "JobsForUMass",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"license": "AGPL-version-3.0",
"private": false,
"engines": {
"node": ">= 14.0.0",
"npm": ">= 6.0.0"
},
"homepage": "",
"repository": {
"type": "git",
"url": "https://github.com/Espiobest/CS-326-Project"
},
"bugs": "",
"keywords": [],
"author": {
"name": "Team 36",
"url": "https://github.com/Espiobest/CS-326-Project"
},
"collaborators": [
{
"name": "Ayush Ravi Chandran",
"email": "ayushravicha@umass.edu",
"github": "Espiobest"
},
{
"name": "Divyansh Shivashok",
"email": "dshivashok@umass.edu",
"github": "coolkite"
},
{
"name": "Om Mehta",
"email": "omehta@umass.edu",
"github": "lous-e"
},
{
"name": "Ayomide Olubanwo",
"email": "aolubanwo@umass.edu",
"github": "ayyo-ayyo"
}
],
"scripts": {
"dev": "",
"test": "",
"start": "node src/server/server.js | npm run milestone-02",
"milestone-01": "http-server src/docs/milestone-01 -p 3000 -c-1 -o -s",
"milestone-02": "http-server src/client -p 3000 -c-1 -o -s",
"validate-html": "html-validate src/**/*.html",
"prettier": "prettier src/**/*.css src/**/*.js --write"
},
"devDependencies": {
"html-validate": "^8.11.1",
"http-server": "^14.1.1",
"prettier": "^3.2.5"
},
"dependencies": {
"cors": "^2.8.5",
"crypto": "^1.0.1",
"express": "^4.19.2",
"pouchdb": "^8.0.1",
"pouchdb-upsert": "^2.2.0",
"underscore": "^1.13.6"
}
}