forked from alexhlee6/YukisGuitar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 951 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": "jsproject",
"version": "1.0.0",
"description": "",
"main": "app.js",
"homepage": "./",
"scripts": {
"start": "node app.js",
"server": "nodemon app.js",
"debug": "nodemon --inspect app.js",
"client": "npm start --prefix client",
"client-install": "npm install --prefix client",
"dev": "concurrently \"npm run debug\" \"npm run client\"",
"test": "echo \"Error: no test specified\" && exit 1",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alex629lee/js-project.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@mongoosejs/double": "^0.2.0",
"body-parser": "^1.19.0",
"concurrently": "^5.0.2",
"express": "^4.17.1",
"mongoose": "^5.8.3",
"mongoose-float": "^1.0.4",
"nodemon": "^2.0.2"
}
}