-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 929 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 929 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
38
{
"name": "blogapi",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "cross-env ENVIRONMENT=test mocha server/test",
"start": "node server/start.js",
"dev": "nodemon server/start.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RickardPedersen/BlogAPI.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/RickardPedersen/BlogAPI/issues"
},
"homepage": "https://github.com/RickardPedersen/BlogAPI#readme",
"dependencies": {
"accesscontrol": "^2.2.1",
"bcryptjs": "^2.4.3",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"cors": "^2.8.5",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.10.0",
"nedb-promises": "^4.0.4",
"nodemon": "^2.0.4"
},
"devDependencies": {
"chai-match": "^1.1.1"
}
}