-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.51 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.51 KB
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": "node-app",
"version": "1.0.0",
"description": "",
"private": true,
"main": "src",
"scripts": {
"babel": "babel src --out-dir transcripted_src",
"commit": "git-cz",
"depcheck": "depcheck",
"devSetup": "./scripts/dev-setup.sh",
"lint": "npm-run-all lint:js",
"lint:js": "eslint src",
"migrate": "sequelize db:migrate",
"migrate:undo": "sequelize db:migrate:undo:all",
"prodSetup": "./scripts/prod-setup.sh",
"seed": "sequelize db:seed:all",
"seed:undo": "sequelize db:seed:undo:all",
"start": "echo $NODE_ENV; nodemon src run",
"test": "jest",
"validate": "npm-run-all --parallel lint test"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run validate"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/UriConMur/node-js-backend.git"
},
"contributors": [
"Uriel Contreras <uri.conmur@gmail.com>"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/UriConMur/node-js-backend.git/issues"
},
"homepage": "https://github.com/UriConMur/node-js-backend.git#readme",
"dependencies": {
"babel-register": "^6.26.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"config": "^2.0.1",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"cz-conventional-changelog": "^2.1.0",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"jsonwebtoken": "^8.3.0",
"lodash": "^4.17.10",
"mysql2": "^1.6.1",
"nodemon": "^1.18.3",
"pug": "^2.0.3",
"sequelize": "^4.38.0",
"sequelize-cli": "^4.1.1",
"winston": "^3.0.0",
"yargs": "^12.0.1"
},
"devDependencies": {
"@commitlint/cli": "7.0.0",
"@commitlint/config-conventional": "7.0.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"commitizen": "^2.10.1",
"commitlint": "^7.0.0",
"depcheck": "^0.6.11",
"enzyme": "^3.4.1",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.13.0",
"husky": "^1.0.0-rc.13",
"jest": "^23.4.2",
"npm-run-all": "^4.1.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}