-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
32 lines (32 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
{
"name": "rpicampusmap",
"version": "1.0.0",
"description": "The RPICampusMap project.",
"private": true,
"scripts": {
"build": "cd api && npm run build && cd ../campusmap && npm run build",
"heroku-prebuild": "touch .env && echo \"NODE_ENV=production\" >> .env",
"heroku-postbuild": "npm run install-all && npm run build",
"install-all": "cd api && npm install && cd ../campusmap && npm install",
"install-api": "cd api && npm install",
"install-ui": "cd campusmap && npm install",
"lint-api": "cd api && npm run lint",
"lint-ui": "cd campusmap && npm run lint",
"test-api": "cd api && npm run test-coverage",
"test-ui": "cd campusmap && npm run test-coverage",
"start": "cd api && npm run api-prod"
},
"engines": {
"node": "14.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gaskij/rpicampusmap.git"
},
"author": "Justin Gaskins",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/gaskij/rpicampusmap/issues"
},
"homepage": "https://github.com/gaskij/rpicampusmap#readme"
}