forked from nahshov/Instaglam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.15 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": "instaglam",
"version": "1.0.0",
"description": "### By [Almog Ram](https://github.com/almoghr), [Roi Assa](https://github.com/roiassa), [Omer Gronich](https://github.com/OmerGronich)",
"main": "index.js",
"scripts": {
"mongo": "docker run -p 27017-27019:27017-27019 -v ${PWD}/server/db-data:/data/db -d mongo",
"start:frontend": "cd client && npm start",
"start:backend": "cd server && npm run dev",
"client:install": "cd client && npm install",
"server:install": "cd server && npm install",
"postinstall": "(npm run client:install) && (npm run server:install)",
"lint": "eslint '**/*.js'",
"lint:fix": "(cd server && npm run lint:fix) && (cd client && npm run lint:fix)",
"dev": "concurrently \"npm run start:frontend\" \"npm run start:backend\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/OmerGronich/Instaglam.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/OmerGronich/Instaglam/issues"
},
"homepage": "https://github.com/OmerGronich/Instaglam#readme",
"dependencies": {},
"devDependencies": {
"concurrently": "^5.2.0",
"eslint-import-resolver-webpack": "^0.12.2"
}
}