-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
59 lines (59 loc) · 2.95 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "@socialgouv/code-du-travail",
"private": true,
"license": "MIT",
"description": "Code du travail",
"homepage": "https://github.com/SocialGouv/code-du-travail-numerique#readme",
"scripts": {
"prepare": "husky",
"build": "lerna run build --scope=@socialgouv/cdtn-utils --scope=@socialgouv/cdtn-ui --scope=@socialgouv/modeles-social --scope=@cdt/frontend --stream",
"build:npm": "lerna run build --scope=@socialgouv/cdtn-utils --scope=@socialgouv/cdtn-ui --scope=@socialgouv/modeles-social --stream",
"clean": "lerna clean",
"dev:docker": "docker-compose up elasticsearch",
"dev": "SENTRY_IGNORE_API_RESOLUTION_ERROR=1 lerna run dev --parallel",
"type-check": "lerna run type-check --stream",
"dev:frontend": "lerna run dev --parallel --scope=@cdt/frontend --scope=@socialgouv/cdtn-ui --scope=@socialgouv/modeles-social --stream",
"dev:simulate-deployment": "NEXT_PUBLIC_SITE_URL=https://code-du-travail-numerique-preprod.ovh.fabrique.social.gouv.fr yarn workspace @cdt/frontend build && yarn workspace @cdt/frontend start",
"lint": "lerna run lint",
"lint:fix": "lerna run lint -- --fix",
"lint:quiet": "lerna run lint -- --quiet",
"start": "lerna run start --scope=@cdt/frontend --stream",
"storybook:build": "lerna run build-storybook --scope=@socialgouv/cdtn-ui",
"storybook:run": "lerna run start --scope=@socialgouv/cdtn-ui",
"storybook:deploy": "lerna run deploy-storybook --scope=@socialgouv/cdtn-ui",
"svg": "lerna run svg --scope=@socialgouv/cdtn-ui --stream",
"test": "npm run test:frontend && npm run test:modeles && npm run test:ui && npm run test:utils",
"test:modeles": "lerna run test --scope=@socialgouv/modeles-social --stream",
"test:frontend": "lerna run test:frontend --scope=@cdt/frontend --stream",
"test:ui": "lerna run test --scope=@socialgouv/cdtn-ui --stream",
"test:utils": "lerna run test --scope=@socialgouv/cdtn-utils --stream",
"test:api": "lerna run test:api --scope=@cdt/frontend --stream",
"test:e2e": "lerna run test:e2e --scope=@cdt/frontend --stream",
"test:e2e:ui": "lerna run test:e2e:ui --scope=@cdt/frontend --stream",
"test:update": "lerna run test:update --scope=@socialgouv/cdtn-ui --scope=@cdt/frontend --stream",
"test:update:frontend": "lerna run test:update --scope=@cdt/frontend --stream",
"test:update:api": "lerna run test:api:update --scope=@cdt/frontend --stream",
"format": "lerna run format --stream",
"format:check": "lerna run format:check --stream",
"precommit": "lerna run precommit --stream"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SocialGouv/code-du-travail-numerique.git"
},
"bugs": {
"url": "https://github.com/SocialGouv/code-du-travail-numerique/issues"
},
"devDependencies": {
"husky": "^9.1.6",
"lerna": "8.1.8"
},
"workspaces": [
"packages/*"
],
"engines": {
"node": ">= v20"
},
"version": "0.0.0",
"packageManager": "[email protected]"
}