-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 930 Bytes
/
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
{
"name": "signalium-repo",
"private": true,
"type": "module",
"version": "1.0.0",
"description": "Chain-reactivity at critical mass",
"main": "index.js",
"scripts": {
"dev": "npm run dev -w signalium",
"lint": "eslint . && prettier --check .",
"test": "turbo run test",
"build": "turbo run build",
"check-types": "turbo run check-types",
"release": "turbo run build && changeset publish"
},
"workspaces": [
"./docs",
"./packages/*"
],
"author": "",
"license": "ISC",
"packageManager": "[email protected]",
"dependencies": {
"@changesets/cli": "^2.27.10",
"@types/react": "^18.3.12",
"eslint": "^9.15.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"globals": "^15.13.0",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.15.0"
},
"devDependencies": {
"turbo": "^2.4.2"
}
}