-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.06 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.06 KB
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
{
"name": "techstack",
"description": "A collection of self built packages plus some forks for web development",
"version": "1.0.12",
"main": "index.js",
"author": "The-Code-Monkey",
"license": "MIT",
"private": true,
"packageManager": "npm@11.14.0",
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "git clean -xdf",
"test": "turbo run test",
"test:fix": "turbo run test -- -u",
"lint": "turbo run lint",
"lint:fix": "turbo run lint -- --fix",
"lint:cms": "cd platforms/react-cms && npm run lint",
"size": "turbo run size",
"build:tcm": "turbo run build --filter=@techstack/tcm-cli",
"build": "turbo run build",
"build-storybook": "turbo run build-storybook -- -- -o build"
},
"devDependencies": {
"@types/node": "25.6.0",
"turbo": "2.9.9"
},
"engines": {
"node": ">=24"
},
"dependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/npm": "13.1.5",
"semantic-release": "25.0.3",
"semantic-release-monorepo": "8.0.2"
}
}