-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
34 lines (34 loc) · 953 Bytes
/
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
{
"name": "faststore",
"description": "Digital commerce toolkit for frontend developers.",
"repository": "[email protected]:vtex/faststore.git",
"license": "MIT",
"private": true,
"scripts": {
"build": "turbo run build --log-order=grouped",
"dev": "turbo run dev --parallel --no-cache",
"lint": "turbo run lint",
"test": "turbo run test",
"size": "turbo run size",
"release": "lerna version patch --yes && lerna publish from-git --yes",
"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": "^3.0.0",
"lerna": "^8.0.0",
"prettier": "^3.1.0",
"turbo": "^2.1.3"
},
"version": "0.0.0",
"volta": {
"node": "18.19.0",
"yarn": "1.19.1"
},
"dependencies": {},
"packageManager": "[email protected]"
}