-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.09 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
{
"name": "portfolio-api",
"version": "1.0.0",
"description": "\"API for my own portfolio\"",
"main": "index.js",
"repository": "https://github.com/Zuiluj/portfolio-api.git",
"author": "[email protected]",
"license": "MIT",
"private": true,
"dependencies": {
"bcrypt": "^4.0.1",
"compression": "^1.7.4",
"concurrently": "^5.3.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"customize-cra": "^0.9.1",
"dotenv": "^8.2.0",
"ejs": "^3.1.3",
"esm": "^3.2.25",
"express": "^4.17.1",
"gatsby-plugin-create-client-paths": "^2.7.0",
"googleapis": "^58.0.0",
"jsonwebtoken": "^8.5.1",
"less": "^3.11.1",
"less-loader": "^5.0.0",
"mongoose": "^5.9.2",
"mongoose-slug-generator": "^1.0.4",
"nodemailer": "^6.4.11",
"nodemon": "^2.0.2",
"react-app-rewired": "^2.1.5",
"uuidv5": "^1.0.0"
},
"scripts": {
"start": "node -r esm src/index.js",
"dev": "nodemon -r esm src/index.js",
"heroku-postbuild": "concurrently --success first --kill-others \"yarn start\" \"cd client && yarn && yarn build\" "
}
}