-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 819 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 819 Bytes
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": "bears-19",
"version": "0.0.1",
"description": "Budget app",
"main": "index.js",
"scripts": {
"dev-server": "npx nodemon ./server/bin/www",
"lint-staged": "lint-staged",
"test": "echo \"Error: no test specified\" && exit 1"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint-staged",
"pre-push": "npm run lint-staged"
}
},
"keywords": [],
"author": "Osycon, Paulina, Ufedo, Dmitri, Chsanch ",
"license": "MIT",
"devDependencies": {
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.0",
"husky": "^1.2.0",
"lint-staged": "^8.1.0",
"nodemon": "^1.18.6",
"prettier": "^1.15.2"
},
"dependencies": {}
}