-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
44 lines (44 loc) · 1.03 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
{
"name": "rocketmeme",
"version": "0.0.0",
"description": "A collection of interesting and funny programming memes to help lighten up your mood ",
"main": "src/index.js",
"scripts": {
"test": "jest",
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"lint": "eslint ./src --ext .js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Evavic44/rocketmeme.git"
},
"keywords": [
"memes",
"editor",
"fun",
"laugh",
"code",
"programming"
],
"author": "Eke Victor, Spiff Jekey-Green",
"license": "MIT",
"bugs": {
"url": "https://github.com/Evavic44/rocketmeme/issues"
},
"homepage": "https://github.com/Evavic44/rocketmeme#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"express": "^4.17.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.4.6"
},
"devDependencies": {
"dotenv": "^16.0.0",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.3.0",
"nodemon": "^2.0.15",
"prettier": "^2.5.1"
}
}