-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.08 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
{
"name": "slide-news",
"version": "1.0.0",
"main": "server.js",
"dependencies": {
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-rate-limit": "^5.1.3",
"helmet": "^3.23.1",
"mongoose": "^5.9.20"
},
"devDependencies": {
"concurrently": "^5.2.0"
},
"scripts": {
"start": "node server.js",
"heroku-postbuild": "cd client && npm install && npm run build && npm run postBuild",
"db": "sudo systemctl start mongod",
"test": "echo \"Error: no test specified\"",
"dev": "concurrently \"npm run db && npm run start\" \"cd client && npm start\"",
"testProd": "cd client && npm run build && npm run postBuild && cd ../ && npm run db && npm run start",
"clean": "rm -rf build && sudo systemctl stop mongod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kRyM1337/slide-news.git"
},
"keywords": [],
"author": "Leonid Yanchis",
"license": "ISC",
"bugs": {
"url": "https://github.com/kRyM1337/slide-news/issues"
}
}