-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·34 lines (34 loc) · 1.06 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
{
"name": "LimeHomeTask",
"version": "1.0.0",
"description": "Lime home backend task",
"main": "app.js",
"scripts": {
"test": "find ./tests -name '*.js' | NODE_ENV=test xargs node_modules/.bin/mocha -R spec",
"pretty": "find ./. -name '*.js' -not -path '././node_modules/*' | xargs node_modules/.bin/prettier --list-different --config .prettierrc.json --write",
"lint": "find ./. -name '*.js' -not -path '././node_modules/*' -not -path '././tests/*' -not -path '././db/*' -not -path '././app.js' | xargs ./node_modules/.bin/eslint"
},
"dependencies": {
"async": "^2.1.4",
"axios": "^0.19.2",
"body-parser": "^1.15.2",
"config": "^1.24.0",
"express": "^4.14.0",
"jade": "^1.11.0",
"joi": "^14.3.1",
"joi-date-extensions": "^1.2.0",
"morgan": "^1.7.0",
"mysql": "^2.12.0",
"path": "^0.12.7",
"pm2": "^4.2.3"
},
"devDependencies": {
"eslint": "^6.8.0",
"mocha": "^7.1.0",
"prettier": "^1.19.1",
"should": "^13.2.3",
"sinon": "^9.0.0"
},
"author": "Tirthankar Kundu",
"license": "ISC"
}