-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.35 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
{
"name": "@formio/pretty-checkbox",
"version": "2.0.0-rc.2",
"description": "Use pretty checkboxes with Form.io",
"main": "lib/module.js",
"module": "node",
"files": [
"dist",
"lib"
],
"scripts": {
"build:styles:prod": "cp ./node_modules/pretty-checkbox/dist/pretty-checkbox.min.css ./dist/formio-pretty-checkboxes.min.css",
"build:styles:dev": "cp ./node_modules/pretty-checkbox/dist/pretty-checkbox.css ./dist/formio-pretty-checkboxes.css",
"build:styles": "yarn build:styles:dev && yarn build:styles:prod",
"build:templates": "gulp templates",
"build:dist": "tsc && webpack && webpack --config webpack.prod.js",
"build": "yarn build:templates && yarn build:dist && yarn build:styles",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Travis Tidwell <[email protected]>",
"license": "MIT",
"dependencies": {},
"peerDependencies": {
"@formio/js": "^5.0.0-rc.47"
},
"devDependencies": {
"@formio/js": "^5.0.0-rc.48",
"del": "^7.1.0",
"eslint": "^9.2.0",
"eslint-config-formio": "^1.1.4",
"eslint-loader": "^4.0.2",
"gulp": "^5.0.0",
"gulp-insert": "^0.5.0",
"gulp-rename": "^2.0.0",
"gulp-template": "5.0.0",
"pretty-checkbox": "^3.0.3",
"ts-loader": "^9.5.1",
"typescript": "5.4.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
}
}