-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.2 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
{
"name": "squeegee-server",
"version": "0.1.0",
"description": "The server for the Squeegee Whiteboard application",
"private": true,
"scripts": {
"lint": "eslint --ignore-path .gitignore .",
"start": "node ./app.js",
"dev": "nodemon ./app.js"
},
"dependencies": {
"base64url": "^3.0.1",
"bcrypt": "^3.0.5",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"debug": "^4.1.1",
"express": "^4.16.4",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.9.1",
"paper-jsdom": "^0.12.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"sequelize": "^5.8.7",
"socket.io": "^2.2.0",
"sqlite3": "^4.0.6",
"uuid": "^3.3.2"
},
"devDependencies": {
"eslint": "^5.15.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"nodemon": "^1.18.10",
"sequelize-cli": "^5.4.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/squeegee-whiteboard/server.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/squeegee-whiteboard/server/issues"
},
"homepage": "https://github.com/squeegee-whiteboard/server#readme"
}