-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.07 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
{
"name": "storefront-x",
"version": "0.1.1",
"description": "Storefront X",
"main": "index.js",
"repository": "https://github.com/storefront-x/storefront-x",
"author": "Storefront-x",
"license": "MIT",
"private": true,
"type": "module",
"packageManager": "[email protected]",
"workspaces": [
"./modules/*"
],
"scripts": {
"test:unit": "npx vitest run",
"test:playwright": "npx playwright test",
"lint": "npx eslint --ext .js,.ts,.jsx,.tsx .",
"lint:prod": "cross-env NODE_ENV=production npx eslint --ext .js,.ts,.jsx,.tsx .",
"dev": "sfx dev",
"build": "sfx build",
"serve": "sfx serve",
"make": "sfx make",
"cypress": "npx cypress",
"docs:dev": "npx vitepress dev docs",
"docs:build": "npx vitepress build docs",
"docs:serve": "npx vitepress serve docs"
},
"dependencies": {
"@storefront-x/base": "^1.30.1",
"@storefront-x/core": "^1.30.1"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@storefront-x/testing": "^1.30.1",
"@storefront-x/tooling": "^1.30.1",
"cross-env": "^7.0.3"
}
}