-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.6 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
{
"name": "nodejs-boilerplate",
"version": "1.0.0",
"description": "sample structure to use in node js projects",
"main": "index.js",
"engines": {
"node": "=8.11.1",
"npm": "=5.8.0"
},
"private": true,
"scripts": {
"commitmsg": "./scripts/bash/commit-message",
"precommit": "node scripts/js/pre-commit",
"prepush": "node scripts/js/pre-push",
"postcheckout": "./scripts/bash/post-checkout",
"postmerge": "./scripts/bash/post-merge",
"test": "echo \"Error: no test specified\" && exit 1",
"check-version": "node ./validate-environment",
"eslint": "eslint *.js",
"build": "run-s check-version eslint",
"dev": "npm run build && NODE_ENV=development node --inspect index",
"stage": "npm run build && NODE_ENV=staging node index",
"prestart": "npm run build",
"start": "NODE_ENV=production node index"
},
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git@github-newput:shashank-saxena/NodeJS-boilerplate.git"
},
"keywords": [
"nodejs",
"boilerplate"
],
"author": "",
"license": "MIT",
"devDependencies": {
"chalk": "~2.4.0",
"eslint": "~4.19.1",
"eslint-plugin-filenames": "github:shashank-saxena/eslint-plugin-filenames",
"eslint-plugin-json": "~1.2.0",
"husky": "~0.14.3",
"npm-run-all": "~4.1.2",
"yaml-lint": "~1.2.3",
"yargs": "~11.0.0"
},
"dependencies": {
"body-parser": "~1.18.2",
"dotenv": "~5.0.1",
"express": "~4.16.3",
"jsonapi-serializer": "~3.5.6",
"semver": "~5.5.0",
"shelljs": "~0.8.1",
"winston": "~2.4.1"
}
}