forked from starknet-io/get-starknet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 1.11 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
{
"name": "get-starknet-monorepo",
"version": "2.0.0",
"private": true,
"scripts": {
"build": "pnpm run -r build",
"dev": "pnpm run -r --parallel dev",
"format": "prettier --ignore-path .gitignore --plugin-search-dir=. --write '**/*.{js,cjs,ts,tsx,svelte,md,yml,json}'",
"format:check": "prettier --ignore-path .gitignore --plugin-search-dir=. --check '**/*.{js,cjs,ts,tsx,svelte,md,yml,json}'",
"prepare": "pnpm run build && husky install",
"publish": "pnpm publish -r --no-git-checks",
"test": "CI=true pnpm run -r test",
"version": "changeset version && pnpm install --lockfile-only"
},
"lint-staged": {
"*.{js,cjs,ts,tsx,svelte,md,yml,json}": "prettier --ignore-path .gitignore --plugin-search-dir=. --write"
},
"devDependencies": {
"@changesets/cli": "^2.24.1",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@trivago/prettier-plugin-sort-imports": "^3.3.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"prettier-plugin-packagejson": "^2.2.18",
"prettier-plugin-svelte": "^2.7.0"
}
}