forked from vtex/faststore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.05 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
{
"name": "faststore",
"description": "Digital commerce toolkit for frontend developers.",
"repository": "[email protected]:vtex/faststore.git",
"license": "MIT",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel --no-cache",
"lint": "turbo run lint",
"test": "turbo run test --filter=!./packages/core",
"size": "turbo run size",
"release": "lerna version patch --yes && lerna publish from-git --yes",
"generate-ui-component": "yarn plop --plopfile generators/plopfile.ts",
"clean": "turbo run clean && rm -rf node_modules",
"format": "prettier --ignore-path .gitignore --write \"**/*.{js,jsx,ts,tsx,md}\""
},
"workspaces": [
"packages/*",
"apps/*"
],
"devDependencies": {
"@faststore/eslint-config": "*",
"conventional-changelog-conventionalcommits": "^5.0.0",
"lerna": "6.4.1",
"plop": "^2.7.6",
"prettier": "latest",
"turbo": "latest"
},
"version": "0.0.0",
"volta": {
"node": "16.18.0",
"yarn": "1.19.1"
},
"dependencies": {}
}