-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 969 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
{
"name": "naturegram",
"version": "1.0.0",
"description": "An Instagram clone website, created with a React frontend and a Node.js Express backend.",
"main": "index.js",
"scripts": {
"start": "node backend/bin/www",
"cypress": "cd frontend && npm run cypress",
"test-front": "cd frontend && npm start",
"test-back": "cd backend && npm run test-server",
"test": "npm-run-all -p -r cypress test-front test-back",
"heroku-postbuild": "npm-run-all install-front install-back",
"install-front": "cd frontend && npm i && npm run build",
"install-back": "cd backend && npm i"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kcmaxwell/naturegram.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/kcmaxwell/naturegram/issues"
},
"homepage": "https://github.com/kcmaxwell/naturegram#readme",
"dependencies": {
"npm-run-all": "^4.1.5"
}
}