-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.64 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
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "bpmn-dmn-diff-viewer-extension",
"version": "0.0.7",
"description": "A chrome extension for Github to see diff of BPMN and DMN files",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/gawdfrey/bpmn-dmn-diff-viewer-extension.git"
},
"scripts": {
"clean": "rimraf dist && rimraf .turbo && turbo clean",
"build": "turbo build",
"build:firefox": "cross-env __FIREFOX__=true turbo build",
"dev-server": "pnpm -F hmr build && pnpm -F hmr dev-server",
"dev": "concurrently --kill-others \"cross-env __DEV__=true turbo dev --concurrency 20\" \"pnpm dev-server\"",
"dev:firefox": "concurrently --kill-others \"cross-env __DEV__=true __FIREFOX__=true turbo dev --concurrency 20\" \"pnpm dev-server\"",
"test": "turbo test",
"type-check": "turbo type-check",
"format-and-lint": "biome check .",
"format-and-lint:fix": "biome check . --write",
"graph": "npx nx graph",
"upgrade": "npx taze -r -w --exclude pnpm",
"changeset": "changeset tag",
"release": "changeset publish",
"version": "changeset version"
},
"type": "module",
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@changesets/cli": "^2.27.7",
"@types/chrome": "^0.0.269",
"@types/node": "^22.9.1",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react-swc": "^3.7.0",
"autoprefixer": "^10.4.19",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"postcss": "^8.4.40",
"rimraf": "^6.0.1",
"tailwindcss": "^3.4.15",
"tslib": "^2.6.3",
"turbo": "^2.3.0",
"typescript": "5.5.4",
"vite": "^5.3.3"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.12.0"
}
}