-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.36 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.36 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "node-mysql-rest-api",
"version": "1.0.0",
"description": "Node.js Boilerplate",
"main": "src/bin/www",
"scripts": {
"create": "node --require dotenv/config --require babel-register scripts/create.js",
"cm": "git-cz",
"precommit": "npm run test",
"commitmsg": "validate-commit-msg",
"test": "cross-env NODE_ENV=test nyc --reporter=html --reporter=text tape --require dotenv/config --require babel-register --require babel-polyfill __tests__/**/*.test.js | faucet",
"coverage": "nyc report --reporter=lcov > coverage.lcov && codecov",
"clean:doc:api": "rimraf docs/api/ && mkdirp docs/api/",
"clean:doc:source": "rimraf docs/source/ && mkdirp docs/source/",
"clean:doc": "run-s clean:doc:*",
"clean:server": "rimraf dist/ && mkdirp dist/",
"clean": "run-p clean:*",
"build:doc:api": "npm run clean:doc:api && apidoc -i src/ -o docs/api",
"build:doc:source": "npm run clean:doc:source && esdoc -c esdoc.json",
"build:doc": "run-p build:doc:*",
"build:server": "npm run clean:server && babel src/ -d dist/ --source-maps --copy-files",
"build": "run-p build:*",
"prestart:dev": "eslint --fix src/",
"start:dev": "node --require dotenv/config --require babel-register --require babel-polyfill src/bin/www",
"dev": "nodemon --watch 'src/**/*.js' --exec npm run start:dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JoemaNequinto/node-mysql-rest-api.git"
},
"keywords": [
"node",
"express",
"sequelize",
"mysql"
],
"author": "Joema Nequinto <janequinto@codedisruptors.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/JoemaNequinto/node-mysql-rest-api/issues"
},
"homepage": "https://github.com/JoemaNequinto/node-mysql-rest-api#readme",
"devDependencies": {
"apidoc": "0.17.7",
"babel-cli": "6.26.0",
"babel-plugin-transform-builtin-extend": "1.1.2",
"babel-preset-env": "1.7.0",
"codecov": "3.6.5",
"commitizen": "3.0.7",
"cross-env": "5.2.0",
"cz-conventional-changelog": "2.1.0",
"esdoc": "1.1.0",
"esdoc-standard-plugin": "1.0.0",
"eslint": "5.15.3",
"eslint-config-airbnb-base": "13.1.0",
"eslint-config-prettier": "4.1.0",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-prettier": "3.0.1",
"faker": "4.1.0",
"faucet": "0.0.1",
"husky": "1.3.1",
"mkdirp": "0.5.1",
"nodemon": "1.18.10",
"npm-run-all": "4.1.5",
"nyc": "14.0.0",
"prettier": "1.16.4",
"rimraf": "2.6.3",
"sequelize-cli": "5.4.0",
"validate-commit-msg": "2.14.0"
},
"dependencies": {
"babel-polyfill": "6.26.0",
"bcryptjs": "2.4.3",
"body-parser": "1.18.3",
"casbin": "2.0.1",
"chalk": "2.4.2",
"compression": "1.7.4",
"cors": "2.8.5",
"debug": "4.1.1",
"dotenv": "7.0.0",
"express": "4.16.4",
"express-validation": "1.0.2",
"helmet": "3.16.0",
"http-status": "1.3.1",
"joi": "14.3.1",
"jsonwebtoken": "8.5.1",
"lodash": "4.17.13",
"method-override": "3.0.0",
"mysql2": "1.6.5",
"nodemailer": "5.1.1",
"passport": "0.4.0",
"passport-jwt": "4.0.0",
"passport-local": "1.0.0",
"prompt": "1.0.0",
"sequelize": "5.15.1",
"supertest": "4.0.2",
"tape": "4.10.1",
"uuid": "3.3.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}