forked from training-wheel/strictlybikes-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1000 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1000 Bytes
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
{
"name": "strictlybikes-server",
"version": "1.0.0",
"description": "Server logic for Strictly Bikes",
"main": "server/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/training-wheel/strictlybikes-server.git"
},
"author": "Training Wheels",
"license": "MIT",
"bugs": {
"url": "https://github.com/training-wheel/strictlybikes-server/issues"
},
"homepage": "https://github.com/training-wheel/strictlybikes-server#readme",
"dependencies": {
"axios": "^0.19.0",
"dotenv": "^8.0.0",
"jsonwebtoken": "^8.5.1",
"pg": "^7.12.0",
"pg-hstore": "^2.3.3",
"restify": "^8.4.0",
"restify-router": "^0.5.1",
"sequelize": "^5.12.3",
"socket.io": "^2.2.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.18.2",
"mocha": "^6.2.0"
}
}