-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
33 lines (33 loc) · 855 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
{
"name": "diagrams-ts-monorepo",
"version": "0.0.1",
"description": "Monorepo for diagrams-ts",
"author": "balles",
"license": "MIT",
"private": true,
"scripts": {
"build": "lerna run build",
"lint": "lerna run lint",
"test": "lerna run test",
"format": "lerna run format",
"publish-packages": "lerna publish --no-verify-access",
"start-example": "cd ./examples/create-react-diagrams-ts && yarn start"
},
"workspaces": [
"packages/*",
"examples/*"
],
"devDependencies": {
"@types/jest": "26.0.22",
"@types/node": "15.0.1",
"@typescript-eslint/eslint-plugin": "4.22.0",
"@typescript-eslint/parser": "4.22.0",
"eslint": "7.25.0",
"jest": "26.6.3",
"lerna": "^3.22.0",
"prettier": "2.2.1",
"ts-jest": "26.5.5",
"ts-node": "9.1.1",
"typescript": "4.1.2"
}
}