-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1.69 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
{
"private": true,
"type": "module",
"description": "Transform any plain HTML page into an enterprise-grade static commerce website, with almost no coding required.",
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "husky",
"build": "pnpm -r build && cp -r packages/drop-in/www/drop-in.js/demo packages/docs/storybook-static",
"build:drop-in": "pnpm --filter drop-in.js build",
"start:drop-in": "pnpm --filter drop-in.js start",
"start:docs": "pnpm build:drop-in && concurrently -n drop-in,docs -c 'bgBlue.bold,bgMagenta.bold' 'pnpm --filter drop-in.js build:watch' 'pnpm --filter docs start'",
"test": "pnpm --filter drop-in.js test",
"test:unit": "pnpm --filter drop-in.js test:unit",
"test:watch": "pnpm --filter drop-in.js test:watch",
"test:unit:watch": "pnpm --filter drop-in.js test:unit:watch",
"test:e2e:watch": "pnpm --filter drop-in.js test:e2e:watch",
"dep:major": "pnpm dlx npm-check-updates --packageFile '**/package.json' -u",
"dep:minor": "pnpm dep:major -t minor",
"ts:check": "pnpm -r --sequential ts:check",
"lint": "pnpm -r exec eslint ./ --ext ts,tsx",
"lint:fix": "pnpm lint --fix",
"version": "node replace-jsdelivr.js && git add ."
},
"author": {
"name": "Marco Montalbano",
"email": "[email protected]"
},
"license": "MIT",
"engines": {
"node": ">=20",
"pnpm": "9.1.3"
},
"packageManager": "[email protected]",
"devDependencies": {
"@commercelayer/eslint-config-ts": "^1.4.5",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"husky": "^9.1.5",
"lerna": "^8.1.8",
"lint-staged": "^15.2.9",
"replace-in-file": "^8.1.0",
"typescript": "^5.5.4"
}
}