-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.19 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
{
"name": "edybara",
"version": "1.0.0",
"license": "MIT",
"private": true,
"engines": {
"node": "^18.19.0",
"yarn": "^4.2.1",
"npm": "Please use yarn instead of NPM to install dependencies"
},
"workspaces": [
"packages/*"
],
"scripts": {
"start": "yarn workspace docs start",
"start:new": "yarn workspace docs-new start",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"clean": "yarn run clean:dist && yarn run clean:dependency",
"clean:dist": "lerna run clean:dist",
"clean:dependency": "lerna run clean:dependency && rimraf node_modules",
"reconfigure": "yarn clean:dist && yarn clean:dependency && yarn install",
"build": "lerna run build",
"build:docs": "lerna run build --scope=docs"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"eslint-config-preact": "^1.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.0.0",
"eslint-plugin-prettier": "^5.0.0",
"lerna": "^8.0.0",
"prettier": "^3.0.0",
"rimraf": "^5.0.0",
"typescript": "^5.0.0"
},
"packageManager": "[email protected]"
}