-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.47 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
{
"name": "parsley-visual-layout",
"version": "1.0.0",
"description": "A NO CODE tool for authoring HTML layouts that outputs HTML and CSS with Zesty.io Parsley references.",
"main": "index.js",
"scripts": {
"build": "webpack",
"watch": "npx babel --watch src/jsx --out-dir ./lib",
"watch-less": "less-watch-compiler ./src/less ./dist main.less",
"start": "webpack-dev-server --open --hot --mode development",
"build-prod": "webpack --mode production"
},
"repository": {
"type": "git",
"url": "https://github.com/zesty-io/parsley/tree/master/pvl"
},
"keywords": [
"react",
"parsley",
"zesty-io",
"no-code"
],
"author": "Randy Apuzzo (Zesty.io)",
"license": "ISC",
"peerDependencies": {
"prop-types": "^15.6.0",
"react": "^17.0.2",
"react-dom": "^17.0.0"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/runtime": "^7.13.10",
"babel-cli": "^6.26.0",
"babel-core": "^6.21.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.24.1",
"path": "^0.12.7",
"prop-types": "^15.6.0",
"react": "^17.0.2",
"react-dom": "^17.0.0",
"webpack": "^4.5.0",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"@zesty-io/core": "^1.2.2",
"html-webpack-plugin": "^5.3.1",
"react-dnd": "^14.0.2",
"react-dnd-html5-backend": "^14.0.0"
}
}