-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.37 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.37 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
50
51
52
53
54
{
"name": "@ftools-suit/root",
"version": "1.0.0",
"private": false,
"description": "SUIT (simple user interface tools)",
"bugs": "https://github.com/tbor00/ftools/issues",
"keywords": [
"tools",
"ftools",
"react",
"javascript",
"monorepo",
"react",
"react-dom",
"utils",
"multipackage"
],
"author": "@tbor00",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tbor00/ftools"
},
"main": "index.js",
"engines": {
"node": ">=15",
"npm": ">=7"
},
"workspaces": [
"packages/*"
],
"scripts": {
"changeset": "changeset",
"version-packages": "changeset version",
"release": "npm run lib && changeset publish",
"lib": "turbo run lib",
"format": "turbo run format",
"test": "turbo run test",
"dev": "turbo run dev",
"clean": "rm -rf node_modules package-lock.json"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/runtime": "^7.20.0",
"@changesets/cli": "^2.25.1",
"jest": "^29.3.1",
"prettier": "^2.7.1",
"turbo": "^1.6.3",
"typescript": "^4.9.3"
}
}