forked from data-driven-forms/editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 800 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
{
"name": "@data-driven-forms/dnd",
"version": "0.0.5",
"description": "---",
"main": "index.js",
"module": "esm/index.js",
"typings": "index.d.ts",
"repository": "[email protected]:data-driven-forms/editor.git",
"keywords": [
"react",
"forms",
"javascript"
],
"peerDependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"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",
"build:cjs": "tsc --module commonjs --target es5 --outDir .",
"build:esm": "tsc --module es2015 --target es5 --outDir ./esm",
"build:packages": "node ../../scripts/generate-packages.js"
}
}