-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.58 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "cs-desafio-node",
"version": "1.0.0",
"description": "Concrete Solutions desafio Node.js",
"main": "index.js",
"private": true,
"author": "Weber Amaral <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=6.9",
"npm": ">=3"
},
"scripts": {
"start": "nodemon index.js",
"start:development": "cross-env NODE_ENV=development DEBUG=cs-desafio-node:* npm start",
"precommit": "npm run lint && npm test",
"commit": "git add -A . && git cz",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"lint": "esw *.js src --color",
"lint:watch": "npm run lint -- --watch",
"test": "cross-env NODE_ENV=test ./node_modules/.bin/mocha --ui bdd --reporter spec --colors tests --recursive",
"test:watch": "npm test -- --watch",
"test:coverage": "cross-env NODE_ENV=test ./node_modules/.bin/istanbul cover _mocha -- --ui bdd --reporter spec --colors tests --recursive",
"docs": "apidoc -i src/controllers/ -o docs/",
"deploy": "npm run lint && npm test && npm version minor && git push origin --tags && eb deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/weberamaral/cs-desafio-node.git"
},
"keywords": [
"nodejs",
"express",
"mysql",
"es6",
"api",
"rest"
],
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"apidoc": "0.17.5",
"chai": "3.5.0",
"commitizen": "2.9.6",
"conventional-changelog-cli": "1.3.1",
"coveralls": "2.13.1",
"cross-env": "4.0.0",
"cz-conventional-changelog": "2.0.0",
"eslint": "3.19.0",
"eslint-config-airbnb-base": "11.1.3",
"eslint-plugin-import": "2.2.0",
"eslint-watch": "3.1.0",
"husky": "0.13.3",
"istanbul": "0.4.5",
"mocha": "3.3.0",
"should": "11.2.1",
"supertest": "3.0.0",
"supertest-as-promised": "4.0.2",
"underscore": "1.8.3",
"validate-commit-msg": "2.12.1"
},
"dependencies": {
"aws-sdk": "2.46.0",
"bluebird": "3.5.0",
"body-parser": "1.17.1",
"compression": "1.6.2",
"cors": "2.8.3",
"debug": "2.6.6",
"dotenv": "4.0.0",
"express": "4.15.2",
"express-validation": "1.0.2",
"express-winston": "2.4.0",
"helmet": "3.5.0",
"http-status": "1.0.1",
"joi": "9.0.4",
"jsonwebtoken": "7.4.0",
"lodash": "4.17.4",
"method-override": "2.3.8",
"moment": "2.18.1",
"morgan": "1.8.1",
"mysql": "2.13.0",
"nodemon": "1.11.0",
"sequelize": "3.30.4",
"underscore": "1.8.3",
"winston": "2.3.1"
}
}