This repository was archived by the owner on Dec 20, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.28 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.28 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
{
"name": "timeflies-backend",
"version": "1.0.0-alpha",
"description": "TimeFlies Node.js backend",
"main": "loader.js",
"scripts": {
"start": "node ./loader.js",
"dev": "NODE_ENV=development nodemon ./loader.js",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stoneLeaf/timeflies-backend.git"
},
"author": "stoneLeaf",
"license": "MIT",
"bugs": {
"url": "https://github.com/stoneLeaf/timeflies-backend/issues"
},
"homepage": "https://github.com/stoneLeaf/timeflies-backend#readme",
"dependencies": {
"bcrypt": "^3.0.2",
"cors": "^2.8.5",
"express": "^4.16.4",
"jsonwebtoken": "^8.4.0",
"moment": "^2.24.0",
"moment-range": "^4.0.1",
"mongoose": "^5.3.14",
"morgan": "^1.9.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"slugify": "^1.3.3",
"winston": "^3.1.0"
},
"devDependencies": {
"@types/node": "^10.12.10",
"chai": "^4.2.0",
"chai-http": "^4.2.0",
"eslint": "^5.9.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.7"
}
}