-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.28 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
{
"name": "ubsee",
"version": "2.0.0",
"description": "Creates interactive graphs for UBC subjects and courses",
"main": "index.js",
"engines": {
"node": "16.13.1"
},
"scripts": {
"start": "node app.js",
"nodemon": "nodemon --ignore ./client/ app.js",
"client": "cd client && npm start",
"dev": "concurrently \"npm run nodemon\" \"npm run client\"",
"heroku-postbuild": "cd client && npm install && npm run build",
"add": "node scripts/add.js",
"test": "node scripts/test.js",
"fix": "node scripts/fix.js",
"json-mongo": "node scripts/json-mongo.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AnimeAllstar/UBSee.git"
},
"keywords": [
"ubsee",
"UBC",
"Nodejs",
"Express",
"GoJS",
"Mongodb",
"React"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/AnimeAllstar/UBSee/issues"
},
"homepage": "https://github.com/AnimeAllstar/UBSee#readme",
"dependencies": {
"compression": "^1.7.4",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"helmet": "^4.6.0",
"mongodb": "^4.1.1"
},
"devDependencies": {
"concurrently": "^7.0.0",
"jsonfile": "^6.1.0",
"needle": "^2.9.0",
"nodemon": "^2.0.15",
"sort-json": "^2.0.0"
}
}