-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1.42 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": "vao",
"version": "0.1.0",
"description": "Vacances Adaptées Organisées",
"author": "orgs/SocialGouv/teams/vao",
"license": "Apache-2.0",
"private": true,
"scripts": {
"prepare": "husky install",
"lint:all": "yarn run lint:backend && yarn run lint:frontend-usagers && yarn run lint:frontend-bo && yarn run lint:shared",
"lint:all:fix": "yarn run lint:backend --fix && yarn run lint:frontend-usagers --fix && yarn run lint:frontend-bo --fix && run lint:shared --fix",
"lint:backend": "yarn --cwd ./packages/backend run lint",
"lint:frontend-usagers": "yarn --cwd ./packages/frontend-usagers run lint",
"lint:frontend-bo": "yarn --cwd ./packages/frontend-bo run lint",
"lint:shared": "yarn --cwd ./packages/shared run lint",
"knex": "POSTGRES_HOST=localhost POSTGRES_PORT=5436 env-cmd --no-override knex --cwd ./packages/migrations/src",
"tests:e2e": "E2E_LOCAL=true playwright test",
"tests:e2e:ui": "E2E_LOCAL=true playwright test --ui"
},
"devDependencies": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@playwright/test": "^1.47.0",
"@types/node": "^22.5.4",
"env-cmd": "~10.1.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "~9.1.0",
"husky": "^9.0.10",
"is-ci": "^3.0.1",
"lint-staged": "^15.2.1",
"node-talisman": "^1.29.11",
"prettier": "^3.2.5"
},
"workspaces": [
"packages/*"
]
}