forked from sporeprotocol/spore-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.29 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
{
"name": "spore-sdk",
"private": true,
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"prepare": "husky install",
"test": "turbo run test",
"test:packages": "turbo run test --filter=./packages/*",
"build": "turbo run build",
"build:apps": "turbo run build --filter=./apps/*",
"build:packages": "turbo run build --filter=./packages/*",
"lint:fix": "turbo run lint:fix",
"lint:fix-all": "prettier --write '{packages,apps}/**/*.{js,jsx,ts,tsx,md,json}'",
"clean": "turbo run clean",
"clean:apps": "turbo run clean --filter=./apps/*",
"clean:packages": "turbo run clean --filter=./packags/*",
"clean:dependencies": "pnpm clean:sub-dependencies && rimraf node_modules",
"clean:sub-dependencies": "rimraf packages/**/node_modules apps/**/node_modules"
},
"dependencies": {
"rimraf": "^5.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"husky": "^8.0.0",
"lint-staged": "^13.2.0",
"prettier": "^2.8.7",
"ts-node": "^10.9.0",
"turbo": "^1.9.0",
"type-fest": "^3.8.0",
"typescript": "^5.1.3"
},
"lint-staged": {
"{packages,apps}/**/*.{js,jsx,ts,tsx,md,json}": "prettier --ignore-unknown --write"
},
"packageManager": "^[email protected]",
"engines": {
"node": ">=18.0.0"
}
}