-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 903 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 903 Bytes
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
{
"name": "typometer",
"private": true,
"prettier": "@marcbouchenoire/prettier-config",
"scripts": {
"prettier": "prettier --write --loglevel silent --ignore-path .gitignore",
"dev": "turbo dev",
"build": "turbo build",
"test": "turbo test",
"test:coverage": "turbo test:coverage",
"lint": "pnpm prettier '*.{json,md,yml}' && turbo lint",
"change": "pnpm changeset",
"version": "pnpm changeset version && pnpm install --no-frozen-lockfile",
"release": "turbo build --filter=typometer && pnpm changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@marcbouchenoire/eslint-config": "^2.8.1",
"@marcbouchenoire/prettier-config": "^1.1.0",
"@types/node": "^18.11.18",
"eslint": "^8.31.0",
"lerna": "^6.4.0",
"prettier": "^2.8.2",
"tsatsiki": "^2.0.1",
"turbo": "^1.7.4",
"typescript": "^4.9.4"
}
}