-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 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
{
"name": "geckos-team-27",
"version": "1.0.0",
"description": "an AirBnb clone with Geckos",
"main": "./server/index.js",
"scripts": {
"precommit": "lint-staged",
"client": "npm start --prefix client",
"dev:server": "nodemon ./server/index.js",
"dev": "concurrently \"npm run dev:server\" \"npm run client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/chingu-voyage5/Geckos-Team-27.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/chingu-voyage5/Geckos-Team-27/issues"
},
"homepage": "https://github.com/chingu-voyage5/Geckos-Team-27#readme",
"dependencies": {
"concurrently": "^3.5.1",
"express": "^4.16.3",
"mongoose": "^5.1.4"
},
"devDependencies": {
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"husky": "^0.14.3",
"lint-staged": "^7.1.3",
"nodemon": "^1.17.5",
"prettier": "^1.13.4"
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
}
}