forked from sahilnarain/node-api-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.78 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
{
"name": "node-api-boilerplate",
"version": "1.0.0",
"description": "Boilerplate code for NodeJS APIs",
"main": "server.js",
"directories": {
"doc": "docs",
"test": "tests"
},
"dependencies": {
"async": "^3.2.0",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"morgan": "^1.10.0",
"mysql": "^2.18.1",
<<<<<<< HEAD
"passport": "^0.5.2",
"passport-google-oauth20": "^2.0.0",
=======
"nodemon": "^2.0.15",
>>>>>>> 7cfe20da884ee4f878d55b7cd743455df4e3aeb9
"request": "^2.88.2",
"squel": "^5.13.0"
},
"devDependencies": {
"husky": "^7.0.1",
"jest": "^27.0.6",
"js-beautify": "^1.14.0",
"pkg": "^5.3.0"
},
"scripts": {
"test": "./scripts/tests.sh",
"test-server": "NODE_ENV=test;node server.js",
<<<<<<< HEAD
"start": "rm -rf node_modules/app && cd node_modules && ln -s ../app app && cd .. && node server.js",
=======
"start": "nodemon server.js",
>>>>>>> 7cfe20da884ee4f878d55b7cd743455df4e3aeb9
"git-check": "./scripts/npm/git-check.sh",
"beautify": "./scripts/beautify.sh",
"dist": "./scripts/dist.sh"
},
"husky": {
"hooks": {
"pre-commit": "./scripts/husky-pre-commit.sh",
"post-commit": "./scripts/husky-post-commit.sh"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/sahilnarain/node-api-boilerplate"
},
"keywords": [
"api",
"node",
"boilerplate"
],
"author": "Sahil Narain",
"license": "MIT",
"bugs": {
"url": "https://github.com/sahilnarain/node-api-boilerplate"
},
"homepage": "https://github.com/sahilnarain/node-api-boilerplate"
}