-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.15 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
{
"name": "@diagrams/main",
"version": "0.1.6",
"private": false,
"homepage": "https://joewood.github.io/diagrams",
"repository": {
"git": "https://github.com/joewood/diagrams"
},
"workspaces": [
"graph",
"sidebar",
"example"
],
"devDependencies": {
"typescript": "latest"
},
"dependencies": {
"concurrently": "^7.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"scripts": {
"start": "concurrently --kill-others -n graph,sidebar,example npm:start-graph npm:start-sidebar npm:start-example",
"pub": "npm run build-packages && npm run deploy",
"build-packages": "npm run build -w graph && npm run build -w sidebar",
"deploy": "npm publish -w graph --access-public && npm publish -w sidebar --access-public && npm run deploy -w example",
"start-graph": "FORCE_COLORS=1 npm start -w graph | cat",
"start-sidebar": "FORCE_COLORS=1 npm start -w sidebar | cat",
"start-example": "FORCE_COLORS=1 npm start -w example | cat"
},
"eslintConfig": {
"extends": "react-app"
},
"prettier": {
"tabWidth": 3,
"printWidth": 120
}
}