-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
74 lines (74 loc) · 2.28 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
{
"name": "TinyLanding",
"version": "0.1.0a",
"description": "Boilerplate for Landing Page",
"main": "app/index.js",
"author": {
"name": "Barney Rubble",
"email": "[email protected]",
"url": "https://pasalino.com"
},
"homepage": "https://www.tinylanding.site",
"repository": {
"type": "git",
"url": "https://github.com/pasalino/TinyLanding"
},
"license": "MIT",
"bin": {
"tiny-landing": "./bin/manage.js"
},
"scripts": {
"start": "node ./app/index.js",
"debug": "DEBUG=TinyLanding* ./node_modules/.bin/nodemon ./app/index.js",
"debug-verbose": "DEBUG=* ./node_modules/.bin/nodemon ./app/index.js",
"migrate": "./node_modules/.bin/sequelize db:migrate",
"manage": "node ./bin/manage.js",
"postinstall": "npm run migrate && node ./bin/setup",
"lint": "./node_modules/.bin/eslint --ignore-path .eslintignore .",
"pretest": "NODE_ENV=test ./node_modules/.bin/eslint --ignore-path .eslintignore .",
"test": "NODE_ENV=test ./node_modules/.bin/mocha --reporter spec test/*.js",
"report-coverage": "NODE_ENV=test ./node_modules/.bin/nyc npm test && ./node_modules/.bin/nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"dependencies": {
"chalk": "^2.4.1",
"compression": "^1.7.2",
"console.table": "^0.10.0",
"cookie-parser": "^1.4.3",
"csurf": "^1.9.0",
"date-format": "^1.2.0",
"debug": "latest",
"email-validator": "^1.2.3",
"express": "^4.16.3",
"express-minify": "^1.0.0",
"helmet": "^3.12.0",
"html-minifier": "^3.5.15",
"http-errors": "latest",
"jquery": "^3.3.1",
"json2csv": "^4.1.2",
"morgan": "^1.9.0",
"mustache": "latest",
"mustache-express": "^1.2.5",
"node-fs-extra": "^0.8.2",
"nodemailer": "^4.6.4",
"sequelize": "^5.15.1",
"sequelize-cli": "^4.0.0",
"slugify": "^1.2.9",
"sqlite3": "^4.0.0",
"yargs": "^11.1.0",
"fs-extra": "latest"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-things": "^0.2.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"mocha": "^5.1.1",
"nodemon": "^1.17.3",
"nyc": "^11.7.1",
"sinon": "^5.0.2",
"chai-fs": "latest"
}
}