-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.41 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.41 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
40
41
42
43
44
45
46
47
48
49
{
"name": "jstools",
"version": "0.1.2",
"description": "Toolset for REST Api creation",
"main": "lib/index.js",
"author": "Nicolas Schmidt",
"license": "BSD-3-Clause",
"dependencies": {
"@changesets/cli": "^2.29.6",
"turbo": "^2.9.14"
},
"devDependencies": {
"@babel/cli": "^7.28.0",
"@babel/core": "^7.28.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.28.0",
"@babel/preset-typescript": "^7.27.1",
"@microsoft/eslint-formatter-sarif": "^3.1.0",
"@types/fs-extra": "^11.0.4",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.18.0",
"babel-jest": "^30.0.5",
"eslint": "^8.57.1",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-jest": "^28.11.0",
"fs-extra": "^11.3.0",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"source-map-support": "^0.5.21",
"typedoc": "^0.28.5"
},
"scripts": {
"build": "turbo run build",
"docs": "npm run build && npm run docs:prepare && npm run docs:build",
"docs:build": "cd docs && npm run build && cd ..",
"docs:prepare": "turbo typedoc",
"lint": "turbo run lint",
"test": "turbo run test -- ",
"typedoc": "turbo run typedoc"
},
"publishConfig": {
"access": "public"
},
"workspaces": [
"packages/*"
],
"packageManager": "npm@10.9.3"
}