-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.55 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "server",
"version": "1.4.0",
"engines": {
"node": "11.9.0",
"npm": "6.8.0"
},
"description": "universe.engineering web server",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/universelabs/universe.engineering.git"
},
"homepage": ".",
"bugs": {
"url": "https://github.com/universelabs/universe.engineering/issues/new"
},
"author": "Guy Lepage <guylepage3@gmail.com> (http://lepage.cc)",
"contributors": {
"url": "https://github.com/universelabs/universe.engineering/graphs/contributors"
},
"private": true,
"main": "server.js",
"keywords": [
"express",
"server"
],
"scripts": {
"client-install": "npm install --prefix client",
"start": "node server",
"server": "nodemon server",
"client": "npm start --prefix client",
"client-build": "npm run build --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"prod-pack": "concurrently \"npm run server\" \"serve -s client/build\"",
"prod": "NODE_ENV=production npm install && npm install --prefix client && npm run build --prefix client && npm run prod-pack",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"dependencies": {
"body-parser": "^1.19.0",
"concurrently": "^5.0.2",
"express": "^4.17.1",
"heroku-ssl-redirect": "0.0.4",
"morgan": "^1.9.1",
"nodemailer": "6.4.4",
"request": "^2.88.0",
"serve": "11.3.0"
},
"devDependencies": {
"nodemon": "^2.0.2"
}
}