-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
41 lines (41 loc) · 1.54 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
{
"private": true,
"scripts": {
"app": "yarn workspace git-en-boite-app",
"acceptance": "yarn workspace git-en-boite-acceptance-tests",
"build:clean": "yarn workspaces run build:clean",
"build": "tsc --build",
"bumbailiff": "bumbailiff $(cat .tech-debt-days)",
"lint": "yarn workspaces run lint",
"lint:fix": "yarn workspaces run lint:fix",
"local-clones": "yarn workspace git-en-boite-local-clones",
"start": "if [ $NODE_ENV != 'development' ];then echo 'This command is only intended to be used in a development environment. Please choose one of:\n\n yarn start:server\n yarn start:worker\n' && exit 1;else yarn app start;fi",
"start:server": "node packages/app/dist/server.js",
"start:worker": "node packages/app/dist/worker.js",
"test": "yarn workspaces run test",
"test:wip": "yarn workspaces run test:wip",
"web": "yarn workspace git-en-boite-web",
"logging": "yarn workspace git-en-boite-logging",
"core": "yarn workspace git-en-boite-core",
"smoke": "yarn workspace git-en-boite-smoke-tests",
"inventory": "yarn workspace git-en-boite-inventory",
"prepare": "husky install"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.23.0",
"@typescript-eslint/parser": "5.23.0",
"bumbailiff": "0.4.0",
"eslint": "8.16.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.0.0",
"husky": "7.0.4",
"prettier": "2.6.2"
},
"dependencies": {
"typescript": "4.2.4"
},
"version": "0.14.33"
}