-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.6 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "nodejs-service",
"version": "1.0.0",
"description": "nodejs service",
"main": "index.js",
"scripts": {
"start": "node ./dist/index.js",
"dev": "babel-watch src/index.js",
"build": "npm run clean && npm run build-server",
"build-server": "./node_modules/.bin/babel src -d ./dist --copy-files --source-maps",
"clean": "./node_modules/.bin/rimraf ./dist && ./node_modules/.bin/mkdirp ./dist",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eatrisno/nodejs-service.git"
},
"keywords": [
"nodejs-service"
],
"author": "Eko Aprili Trisno",
"license": "ISC",
"bugs": {
"url": "https://github.com/eatrisno/nodejs-service/issues"
},
"homepage": "https://github.com/eatrisno/nodejs-service#readme",
"dependencies": {
"body-parser": "^1.19.0",
"core-js": "^3.15.2",
"express": "^4.17.1",
"express-joi-validation": "^5.0.0",
"express-request-id": "^1.4.1",
"joi": "^17.4.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.13.2",
"redis": "^3.1.2",
"regenerator-runtime": "^0.13.7"
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/plugin-proposal-object-rest-spread": "^7.14.2",
"@babel/preset-env": "^7.14.2",
"@babel/register": "^7.13.16",
"babel-watch": "^7.4.1",
"chai": "^4.3.4",
"eslint": "^7.30.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"mkdirp": "^1.0.4",
"mocha": "^9.0.2",
"request": "^2.88.2",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.19"
}
}