-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.79 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.79 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
{
"name": "lean-nodejs-api-restful",
"version": "1.0.0",
"description": "api restful nodejs",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"start": "npm run build && node dist/server.js",
"start:dev": "nodemon --exec babel-node src/server.js",
"build": "babel src --out-dir dist",
"test:unit": "NODE_ENV=test mocha test/unit/**/*.spec.js",
"test:integration": "NODE_ENV=test mocha test/integration/**/*.spec.js",
"lint": "eslint src --ext .js",
"lint:fix": "eslint src --fix --ext .js",
"prettier": "prettier --check 'src/**/*.js'",
"prettier:fix": "prettier --write 'src/**/*.js'",
"prepare": "npm run lint:fix && npm run prettier:fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danielcsrs/lean-nodejs-api-restful.git"
},
"keywords": [
"nodejs",
"express",
"mongo"
],
"author": "@danielcsrs",
"license": "MIT",
"bugs": {
"url": "https://github.com/danielcsrs/lean-nodejs-api-restful/issues"
},
"homepage": "https://github.com/danielcsrs/lean-nodejs-api-restful#readme",
"dependencies": {
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^3.22.0",
"moment": "^2.24.0",
"mongoose": "^5.9.7",
"morgan": "^1.10.0",
"winston": "^3.2.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/preset-env": "^7.9.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.2",
"mocha": "^7.1.1",
"nodemon": "^2.0.2",
"prettier": "^2.0.4",
"sinon": "^9.0.2",
"supertest": "^4.0.2"
}
}