-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 876 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 876 Bytes
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
{
"name": "@frenchpastries/customer",
"version": "0.6.2",
"description": "Middleware to auto-register a service to a Bakery",
"main": "dist/customer.js",
"scripts": {
"prepare": "tsc",
"build": "tsc",
"test:server": "NODE_ENV=development PORT=12345 nodemon test/main.ts"
},
"authors": [
"Guillaume Hivert <hivert.is.coming@gmail.com>",
"Arthur Escriou <arthur.escriou@gmail.com>"
],
"license": "MIT",
"files": [
"/dist"
],
"dependencies": {
"@frenchpastries/bakery": "^0.6.4",
"@frenchpastries/millefeuille": "^1.0.2",
"dns2": "^2.1.0"
},
"devDependencies": {
"@frenchpastries/assemble": "^1.0.1",
"@types/dns2": "^2.0.9",
"@types/node": "^20.11.24",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18"
}
}