-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 836 Bytes
/
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
{
"name": "wkspace",
"version": "1.0.0",
"description": "Competitive programming workspace in the cloud.",
"private": true,
"main": "index.js",
"type": "module",
"scripts": {
"start": "node index.js",
"mongo": "mkdir .mongodb; mongod --dbpath .mongodb",
"dev": "concurrently \"npm run mongo\" \"sleep 3 && nodemon index.js\" \"cd client && npm start\"",
"heroku-postbuild": "cd client && npm install && npm run build",
"format": "prettier --write ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"cheerio": "^1.0.0-rc.5",
"express": "^4.17.1",
"mongoose": "^5.11.9"
},
"devDependencies": {
"concurrently": "^5.3.0",
"nodemon": "^2.0.6",
"prettier": "^2.2.1"
},
"engines": {
"node": "14",
"npm": "6"
}
}