-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 846 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 846 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
29
30
31
32
33
34
35
36
{
"name": "jsperf.dev",
"version": "0.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo run build",
"changeset": "changeset",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{js,ts,md}\"",
"prepare": "husky install",
"test:unit": "turbo run test:unit",
"test:integration": "turbo run test:integration",
"release": "changeset publish",
"version-packages": "changeset version"
},
"devDependencies": {
"@changesets/cli": "^2.24.1",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"turbo": "1.6.3"
},
"engines": {
"npm": ">=8.0.0",
"node": ">=16.0.0"
},
"packageManager": "pnpm@7.18.2",
"contributors": [
"Ethan Arrowood <ethan@arrowood.dev>"
],
"lint-staged": {
"**/*.{ts,tsx,md}": "prettier --write"
}
}