-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.19 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
{
"name": "nodejstask",
"version": "1.0.0",
"description": "A monitering system having authentication, json dispatch and image thumb generation features.",
"main": "index.js",
"scripts": {
"test": "nyc mocha --require babel-register ./__tests/*",
"clean": "rm -rf build && mkdir build",
"start": "NODE_ENV=development nodemon ./node_modules/.bin/babel-node ./src/index.js",
"build": "./node_modules/.bin/babel src -d dist"
},
"author": "Dalip <[email protected]>",
"license": "ISC",
"repository": "[email protected]/dalipkumar703/NodeJsTask.git",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"eslint": "^5.3.0",
"eslint-plugin-react": "^7.10.0",
"jsdoc": "^3.5.5",
"mocha": "^5.2.0",
"nodemon": "^1.18.3",
"nyc": "^12.0.2"
},
"dependencies": {
"body-parser": "^1.18.3",
"bodyparser-json-error": "^1.0.0",
"bunyan": "^1.8.12",
"cloudinary": "^1.11.0",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"fast-json-patch": "^2.0.6",
"fs": "0.0.1-security",
"jsonwebtoken": "^8.3.0",
"request": "^2.87.0",
"sharp": "^0.20.5"
}
}