-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathpackage.json
49 lines (49 loc) · 1.4 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
{
"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": "biome check .",
"lint:fix": "biome check --write .",
"stylelint": "stylelint \"**/*.scss\"",
"stylelint:fix": "stylelint \"**/*.scss\" --fix",
"test": "turbo run test",
"size": "turbo run size",
"release": "lerna version --conventional-commits --yes && lerna publish from-git --yes",
"clean": "turbo run clean && rm -rf node_modules",
"prepare": "husky"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@biomejs/biome": "1.9.4",
"husky": "9.1.7",
"lerna": "^8.0.0",
"lint-staged": "15.4.3",
"prettier": "^3.1.0",
"stylelint": "^14.6.0",
"stylelint-config-recess-order": "^3.0.0",
"stylelint-config-standard": "^24.0.0",
"stylelint-config-standard-scss": "^3.0.0",
"stylelint-order": "^5.0.0",
"stylelint-scss": "^4.0.1",
"turbo": "^2.3.4",
"typescript": "5.3.2"
},
"version": "0.0.0",
"volta": {
"node": "18.19.0",
"yarn": "1.22.22"
},
"dependencies": {},
"packageManager": "[email protected]",
"lint-staged": {
"*.{ts,js,tsx,jsx,json}": "yarn lint:fix",
"*.scss": "stylelint --fix"
}
}