-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3.14 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 3.14 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@mozaic-ds/designsystem",
"description": "leroy merlin design system",
"version": "0.0.0",
"author": "Gaël BOYENVAL <gaelboyenval@icloud.com>",
"repository": {
"type": "git",
"url": "https://github.com/adeo/mozaic-design-system"
},
"keywords": [
"gatsby"
],
"private": true,
"workspaces": [
"packages/*"
],
"license": "MIT",
"engines": {
"node": ">=20"
},
"dependencies": {
"@mozaic-ds/gatsby-theme-styleguide": "^1.70.1",
"adm-zip": "^0.5.14",
"chromedriver": "^126.0.1",
"core-js": "^3.37.1",
"gatsby": "^5.16.1",
"gatsby-plugin-canonical-urls": "^5.13.1",
"gatsby-plugin-sitemap": "^6.13.1",
"glob": "^8.0.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-server-dom-webpack": "^0.0.0-experimental-c8b778b7f-20220825",
"request-promise": "^4.2.6",
"rimraf": "^3.0.2",
"xstate": "^4.38.3"
},
"devDependencies": {
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"cp-file": "^11.0.0",
"husky": "^9.0.11",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"lerna": "^9.0.7",
"lint-staged": "^15.2.7",
"mock-fs": "^5.2.0",
"plop": "^4.0.1",
"prettier": "^3.3.2",
"svg-parser": "^2.0.4",
"svgo": "^4.0.1"
},
"scripts": {
"tokens:build": "mozaic-tokens-build",
"tokens:clean": "test -d 'packages/tokens/build/' && npx style-dictionary clean --config ./packages/tokens/config.js || echo 'nothing to clean'",
"tokens:clean-build": "npm run tokens:clean && npm run tokens:build",
"assets:upload": "node ci/assets.js",
"ci:wait": "node ci/deploy.js",
"clean-cache": "npx gatsby clean",
"css:fix": "npx stylelint packages/styles/**/*.scss --fix",
"css:lint": "npx stylelint packages/styles/**/*.scss",
"icons:build": "node iconCompiler/index.js",
"prebuild": "npm run clean-cache && npm run tokens:build",
"lerna": "npx lerna clean -y && npm run install",
"build": "npx gatsby build",
"develop": "npx gatsby develop",
"format": "prettier --write '**/*.js'",
"predevelop": "npm run tokens:clean-build",
"release": "npx lerna version --conventional-commits --conventional-graduate --changelog-preset angular --message 'chore(release): publish %s' --create-release=github",
"releaseBeta": "npx lerna version --conventional-commits --conventional-prerelease --changelog-preset angular --message 'chore(release): publish %s' --create-release=github --preid beta",
"npm:publish": "npx lerna exec --bail=false npm publish",
"npm:publishBeta": "npx lerna exec --bail=false npm publish --tag beta",
"unit": "jest --projects ./packages/*/jest.config.js --coverage --verbose --color --no-cache",
"unit:watch": "jest --watch --silent",
"unit:coverage": "jest --coverage --collectCoverageFrom='**/*.js'",
"prepare": "husky || true"
},
"overrides": {
"tmp": "0.2.7",
"tough-cookie": "^4.1.3",
"lodash": "^4.18.1",
"postcss": "^8.5.15",
"axios": "^1.18.0",
"immutable": "^5.1.6",
"form-data": "^4.0.6",
"serialize-javascript": "^7.0.6",
"path-to-regexp": "^0.1.13"
}
}