-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.18 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
{
"name": "harker-bell-server",
"version": "1.0.0",
"description": "Server exposing public API and websocket for Harker Bell Schedule.",
"main": "index.js",
"scripts": {
"start-bell-dev": "npm run start",
"dev": "nodemon index.js",
"start": "node index.js",
"test": "echo \"Error: no test specified\"",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BowenYin/harker-bell-server.git"
},
"author": "Bowen Yin",
"license": "MIT",
"bugs": {
"url": "https://github.com/BowenYin/harker-bell-server/issues"
},
"homepage": "https://github.com/BowenYin/harker-bell-server#readme",
"dependencies": {
"@sentry/node": "^5.7.1",
"@types/mongodb": "^3.5.2",
"@types/socket.io": "^2.1.4",
"cors": "^2.8.5",
"csv-parse": "^4.6.5",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"moment": "^2.24.0",
"mongodb": "^3.2.7",
"node-schedule": "^1.3.2",
"socket.io": "^2.2.0"
},
"devDependencies": {
"@vuepress/plugin-google-analytics": "^1.2.0",
"eslint": "^6.8.0",
"nodemon": "^1.18.11",
"vuepress": "^1.2.0"
}
}