-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.96 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "adhese-sdk",
"type": "module",
"private": true,
"packageManager": "[email protected]",
"license": "GPL-3.0",
"homepage": "https://github.com/adhese/sdk_typescript#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/adhese/sdk_typescript.git"
},
"workspaces": [
"packages/*",
"apps/*"
],
"bugs": {
"url": "https://github.com/adhese/sdk_typescript/issues"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"scripts": {
"dev": "turbo dev --concurrency 18",
"test": "turbo test --cache-dir=.turbo",
"test:watch": "turbo test:watch",
"lint": "eslint . --ignore-pattern apps --ignore-pattern packages --ignore-pattern **/*.md/**/* && turbo lint --cache-dir=.turbo",
"lint:fix": "eslint . --ignore-pattern apps --ignore-pattern packages --ignore-pattern **/*.md/**/* --ignore-pattern **/*.md/**/* --fix && turbo lint:fix",
"build": "turbo build --cache-dir=.turbo",
"clean": "turbo clean",
"preinstall": "npx only-allow npm",
"typecheck": "turbo typecheck --cache-dir=.turbo",
"changeset": "changeset",
"changeset:version": "changeset version && npm i",
"prepareRelease": "turbo prepareRelease --cache-dir=.turbo",
"release": "npm run prepareRelease && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.9",
"@types/node": "^20.17.6",
"@vitejs/plugin-react": "^4.3.3",
"@vitest/coverage-v8": "^1.6.0",
"autoprefixer": "^10.4.20",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"eslint": "^9.15.0",
"glob": "^10.4.5",
"jsdom": "^24.1.3",
"octokit": "^4.0.2",
"postcss": "^8.4.49",
"remeda": "^2.17.3",
"sdk-eslint-config": "^1.0.1",
"tailwindcss": "^3.4.14",
"terser": "^5.36.0",
"tsup": "^8.3.5",
"turbo": "^2.3.0",
"typescript": "~5.6.3",
"vite": "^5.4.11",
"vite-plugin-css-injected-by-js": "^3.5.2",
"vitest": "^1.6.0",
"vitest-matchmedia-mock": "^1.0.6"
}
}