-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.44 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.44 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
{
"name": "replace-with-your-service-name",
"version": "0.0.1",
"description": "Describe what you service does",
"main": "src/index.js",
"scripts": {
"build": "webpack --mode production --config webpack.config.js",
"watch-dev": "webpack --watch --mode development --config webpack.config.js",
"dev": "npm-run-all -p nodemon watch-dev",
"nodemon": "nodemon dist/server.js",
"start": "node dist/server.js",
"test": "./node_modules/.bin/mocha --require @babel/register",
"debug": "node --inspect",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/Enye-Academy/node-service-template-js.git"
},
"author": "Uche Nnadi",
"license": "ISC",
"bugs": {
"url": "https://github.com/Enye-Academy/node-service-template-js/issues"
},
"homepage": "https://github.com/Enye-Academy/node-service-template-js#readme",
"dependencies": {
"isuuid": "^0.1.0",
"moleculer": "^0.13.9",
"moleculer-web": "^0.8.5",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/register": "^7.4.4",
"assert": "^2.0.0",
"babel-loader": "^8.0.0-beta.0",
"eslint": "^5.16.0",
"eslint-plugin-node": "^9.0.1",
"mocha": "^6.1.4",
"nodemon": "^1.19.0",
"npm-run-all": "^4.1.5",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.2",
"webpack-node-externals": "^1.7.2"
}
}