-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.26 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.26 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
{
"name": "@frenchpastries/bakery",
"repository": "https://github.com/FrenchPastries/bakery",
"version": "0.6.7",
"license": "MIT",
"authors": [
"Arthur Escriou <arthur.escriou@gmail.com>",
"Guillaume Hivert <hivert.is.coming@gmail.com>"
],
"description": "Node JS service registry",
"main": "dist/bakery.js",
"files": [
"dist",
"backoffice/build"
],
"scripts": {
"start": "node dist/main.js",
"test": "mocha test/**/*-test.js",
"prepare": "yarn --cwd backoffice build && yarn build",
"build": "tsc",
"dev": "concurrently -c 'bold.blue,bold.green,bold.red' 'tsc --watch --preserveWatchOutput' 'BAKERY_DEVELOPMENT=true NODE_ENV=development nodemon dist/main.js' 'yarn --cwd backoffice dev'"
},
"dependencies": {
"@frenchpastries/arrange": "^1.0.1",
"@frenchpastries/assemble": "^1.0.1",
"@frenchpastries/millefeuille": "^1.0.2",
"dns2": "^2.1.0",
"joi": "^17.12.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/dns2": "^2.0.9",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.21",
"@types/uuid": "^9.0.8",
"concurrently": "^8.2.2",
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18"
}
}