-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.41 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.41 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
{
"name": "nech-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test mocha --require babel-core/register --exit",
"clear": "rimraf dist/",
"build": "npm run clear && babel ./ --out-dir dist/ --ignore ./node_modules,./.babelrc,./package.json,./npm-debug.log,./test --copy-files",
"start": "npm run build && node dist/index.js",
"dev": "npm run build && NODE_ENV=development node dist/index.js",
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^1.0.3",
"cors": "^2.8.4",
"express": "^4.16.2",
"express-load-routes": "^1.0.1",
"express-validator": "^5.0.0",
"jsonwebtoken": "^8.1.1",
"mongoose": "^5.0.5",
"morgan": "^1.9.0",
"nodemailer": "^4.4.2",
"passport": "^0.4.0",
"passport-jwt": "^3.0.1",
"rimraf": "^2.6.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"dotenv": "^5.0.0",
"eslint": "^4.17.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"husky": "^0.14.3",
"lint-staged": "^6.1.1",
"mocha": "^5.0.1",
"prettier": "1.10.2"
}
}