-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.06 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
57
58
59
60
61
62
63
64
65
{
"author": "Miguel Orrego",
"license": "ISC",
"main": "index.js",
"name": "boconcept-api",
"version": "1.0.0",
"description": "RESTful API for BoConcept Furniture",
"engines": {
"node": "12.18.2"
},
"scripts": {
"start": "node .",
"build": "babel --delete-dir-on-start --out-dir dist --copy-files --ignore \"**/__tests__/**,**/__mocks__/**\" --no-copy-ignored src",
"test": "mocha test/index.test.js --timeout 15000",
"lint": "eslint ./",
"lint:fix": "eslint ./ --fix",
"swagger-autogen": "node src/swagger.js"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm test && npm run lint:fix"
}
},
"dependencies": {
"bcryptjs": "^2.4.3",
"dotenv": "^8.2.0",
"email-templates": "^8.0.2",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"nodemailer": "^6.4.17",
"pg": "^8.4.2",
"pug": "^3.0.0",
"swagger-autogen": "^2.1.1",
"swagger-ui-express": "^4.1.6"
},
"devDependencies": {
"@babel/cli": "^7.12.7",
"@babel/core": "^7.12.7",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/register": "^7.12.1",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^7.2.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.0.0",
"husky": "^4.3.0",
"mocha": "^8.2.1",
"nodemon": "^2.0.6",
"prettier": "^2.2.0",
"should": "^13.2.3"
}
}