-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
60 lines (60 loc) · 1.53 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
60
{
"name": "mfe-my-account",
"private": true,
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"repository": {
"type": "git",
"url": "git+https://github.com/commercelayer/mfe-my-account.git"
},
"author": {
"name": "Pier Francesco Ferrari",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/commercelayer/mfe-my-account/issues"
},
"homepage": "https://github.com/commercelayer/mfe-my-account#readme",
"keywords": [
"reactjs",
"vitejs",
"jamstack",
"headless",
"ecommerce",
"api",
"commercelayer"
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "pnpm --filter '*' dev",
"build": "pnpm --filter '*' build",
"start": "pnpm --filter '*' start",
"lint": "pnpm -r lint",
"lint:fix": "pnpm -r lint:fix",
"test": "pnpm --filter '*' test",
"test:e2e": "pnpm --filter '*' test:e2e",
"dep:upgrade:major": "pnpm -r exec npm-check-updates -u",
"dep:upgrade:minor": "pnpm dep:upgrade:major -t minor",
"dep:self-upgrade:major": "pnpm exec npm-check-updates -u",
"dep:self-upgrade:minor": "pnpm dep:self-upgrade:major -t minor",
"clean": "pnpx rimraf --glob **/node_modules **/pnpm-lock.yaml"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"lerna": "^8.1.9",
"npm-check-updates": "^17.1.11"
},
"resolutions": {
"braces": "^3.0.3",
"dset": "^3.1.2",
"ejs": "^3.1.10",
"tar": "^6.2.1",
"ws": "^8.17.1",
"@types/retry": "0.12.0"
}
}