-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.1 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.1 KB
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": "@data-driven-forms/editor-pro",
"version": "0.0.4",
"description": "DnD editor based on EvergreenUI for React Forms",
"main": "index.js",
"module": "esm/index.js",
"typings": "index.d.ts",
"repository": "git@github.com:data-driven-forms/editor.git",
"keywords": [
"react",
"forms",
"javascript"
],
"dependencies": {
"@data-driven-forms/dnd": "*",
"@data-driven-forms/editor-core": "*",
"@data-driven-forms/evergreen-component-mapper": "*"
},
"license": "Apache-2.0",
"scripts": {
"lint": "eslint . --ext .ts",
"start": "webpack-dev-server --env dev --config ./webpack.config.js --hot",
"build": "yarn build:cjs && yarn build:esm && yarn build:packages && yarn build:css",
"build:cjs": "tsc --module commonjs --target es5 --outDir .",
"build:esm": "tsc --module es2015 --target es5 --outDir ./esm",
"build:packages": "node ../../scripts/generate-packages.js",
"build:css": "node ../../scripts/copy-css.js",
"integration:tests": "cypress run --component --browser electron"
},
"devDependencies": {
"cypress": "^10.0.2"
}
}