generated from Emerson-Valentim/service-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.21 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
{
"name": "naval-combat-server",
"private": true,
"version": "0.0.1",
"description": "Boilerplate for building microservice following an architecture pattern",
"main": "index.js",
"scripts": {
"test": "yarn workspace @naval-combat-server/domains test",
"start:notification": "yarn workspace @naval-combat-server/notification start:server",
"test:compile": "yarn workspace @naval-combat-server/ports compile",
"ci:compile": "yarn workspace @naval-combat-server/ports ci:compile && yarn workspace @naval-combat-server/domains ci:compile",
"delete:node_modules": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +",
"delete:build": "find . -name 'build' -type d -prune -exec rm -rf '{}' +"
},
"workspaces": {
"packages": [
"services/*",
"packages/*"
],
"nohoist": [
"**"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Emerson-Valentim/naval-combat-server.git"
},
"keywords": [
"events"
],
"author": "Emerson-Valentim",
"license": "ISC",
"bugs": {
"url": "https://github.com/Emerson-Valentim/naval-combat-server/issues"
},
"homepage": "https://github.com/Emerson-Valentim/naval-combat-server#readme"
}