-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.5 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "proyecto-4",
"version": "0.0.0",
"description": "A typical JavaScript dev environment",
"main": "index.js",
"scripts": {
"lint:css": "stylelint --allow-empty-input **/*.css",
"lint:js": "eslint .",
"lint": "npm run lint:js && npm run lint:css",
"test": "jest --passWithNoTests",
"dev": "netlify dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ucudal-wp/proyecto-4.git"
},
"author": "Matías Olivera <[email protected]>",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/ucudal-wp/proyecto-4/issues"
},
"homepage": "https://github.com/ucudal-wp/proyecto-4#readme",
"devDependencies": {
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"husky": "^4.2.5",
"jest": "^26.2.2",
"jest-environment-node": "^26.6.2",
"lint-staged": "^10.2.11",
"mongodb-memory-server": "^6.9.2",
"netlify-cli": "^2.59.3",
"prettier": "2.0.5",
"stylelint": "^13.6.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^20.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.css": "stylelint --fix",
"*.{js,css,md}": "prettier --write"
},
"dependencies": {
"bcrypt": "^5.0.0",
"fb": "^2.0.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.10.8",
"nodemailer": "^6.4.16"
}
}