-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 743 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 743 Bytes
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
{
"name": "legostech",
"version": "1.0.0",
"description": "Legos Tech Web Application",
"main": "index.js",
"scripts": {
"start": "node index.js",
"server": "nodemon index.js",
"client": "npm run start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\" \"npm run webhook\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"keywords": [
"Outsourcing",
"Software",
"House"
],
"author": "Roberto Rodriguez",
"license": "ISC",
"dependencies": {
"concurrently": "^4.1.1",
"express": "^4.17.1",
"http-proxy-middleware": "^0.19.1",
"node-sass": "^4.12.0",
"nodemon": "^1.19.1"
}
}