forked from bpmn-io/form-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.71 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "form-js",
"scripts": {
"all": "run-s lint build lint:types test test:distro",
"build": "lerna run build --sort --stream",
"build:watch": "npm run build-watch -- @bpmn-io/form-js",
"build-distro": "lerna run prepublishOnly --sort",
"build-watch": "run-s \"lerna-build-watch -- {@}\" -- ",
"clean": "del-cli \"{node_modules,dist}\" \"packages/*/{node_modules,dist}\"",
"distro": "run-s clean reinstall build-distro",
"dev": "run-s build \"lerna-dev -- {@}\" -- ",
"dev:viewer": "npm run dev -- @bpmn-io/form-js-viewer",
"dev:editor": "npm run dev -- @bpmn-io/form-js-editor",
"dev:playground": "npm run dev -- @bpmn-io/form-js-playground",
"lerna-dev": "lerna run dev --stream --scope",
"lerna-build-watch": "lerna run bundle:watch --stream --parallel --include-dependencies --scope",
"lerna-publish": "lerna publish -m \"chore(project): publish %s\"",
"lint": "eslint packages",
"lint:types": "tsc --noEmit --pretty",
"postinstall": "lerna bootstrap --hoist",
"reinstall": "npm ci",
"release": "run-s distro test \"lerna-publish -- {@}\" --",
"test": "lerna run test",
"test:distro": "lerna run test:distro",
"ci": "run-s all build-distro",
"start:pkg": "cross-env SINGLE_START=basic npm run dev --",
"start": "npm run start:pkg -- @bpmn-io/form-js",
"start:viewer": "npm run start:pkg -- @bpmn-io/form-js-viewer",
"start:viewer:stress": "cross-env SINGLE_START=stress npm run dev -- @bpmn-io/form-js-viewer",
"start:editor": "npm run start:pkg -- @bpmn-io/form-js-editor",
"start:playground": "npm run start:pkg -- @bpmn-io/form-js-playground"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bpmn-io/form-js.git"
},
"keywords": [
"bpmn-io",
"form",
"forms",
"form-js"
],
"workspaces": [
"packages/*"
],
"contributors": [
{
"name": "bpmn.io contributors",
"url": "https://github.com/bpmn-io"
}
],
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/plugin-transform-react-jsx": "^7.14.5",
"@babel/plugin-transform-react-jsx-source": "^7.14.5",
"@bpmn-io/properties-panel": "^1.0.0",
"@rollup/plugin-alias": "^3.1.2",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@testing-library/preact": "^3.0.0",
"@types/chai": "^4.2.19",
"@types/mocha": "^8.2.2",
"@types/node": "^14.17.4",
"@types/sinon": "^9.0.11",
"@types/sinon-chai": "^3.2.5",
"axe-core": "^4.4.3",
"babel-loader": "^8.2.5",
"babel-plugin-istanbul": "^6.1.1",
"chai": "^4.3.5",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"del-cli": "^5.0.0",
"diagram-js": "^11.0.0",
"didi": "^9.0.0",
"eslint": "^8.22.0",
"eslint-plugin-bpmn-io": "^0.16.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react-hooks": "^4.6.0",
"karma": "^6.3.20",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.3",
"karma-debug-launcher": "0.0.4",
"karma-env-preprocessor": "^0.1.1",
"karma-firefox-launcher": "^2.1.1",
"karma-mocha": "^2.0.1",
"karma-sinon-chai": "^2.0.2",
"karma-webpack": "^5.0.0",
"lerna": "^6.0.0",
"mocha": "^9.0.1",
"mocha-test-container-support": "^0.2.0",
"npm-run-all": "^4.1.5",
"preact": "10.5.14",
"puppeteer": "^19.4.0",
"raw-loader": "^4.0.2",
"react-svg-loader": "^3.0.3",
"rollup": "^2.52.3",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-react-svg": "^3.0.3",
"sinon": "^11.1.1",
"sinon-chai": "^3.7.0",
"source-map-loader": "^3.0.0",
"typescript": "^4.3.4",
"webpack": "^5.40.0"
}
}