-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.01 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": "pokemern",
"version": "1.0.0",
"description": "MERN app based on the Pokemon api",
"main": "server.js",
"scripts": {
"start": "node server.js && nodemon server.js",
"server": "nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nrhill1/pokeMERN.git"
},
"keywords": [
"pokemon",
"api",
"mern"
],
"author": "Nic R. Hill",
"license": "MIT",
"bugs": {
"url": "https://github.com/nrhill1/pokeMERN/issues"
},
"homepage": "https://github.com/nrhill1/pokeMERN#readme",
"dependencies": {
"axios": "^0.21.0",
"bcryptjs": "^2.4.3",
"concurrently": "^5.3.0",
"cors": "^2.8.5",
"dotenv": "^8.6.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^5.7.0",
"mongoose": "^5.10.11",
"react-transition-group": "^4.4.1"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/node": "^7.12.6",
"@babel/preset-env": "^7.12.1",
"nodemon": "^2.0.6"
},
"type": "module"
}