-
Notifications
You must be signed in to change notification settings - Fork 138
/
package.json
81 lines (81 loc) · 2.96 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
{
"name": "cardkit",
"version": "3.0.0",
"description": "A simple, powerful and fully configurable image editor for web browsers and servers. Optional UI included.",
"main": "cardkit.js",
"homepage": "https://chrishutchinson.github.io/cardkit",
"bugs": {
"url": "https://github.com/chrishutchinson/cardkit/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/chrishutchinson/cardkit.git"
},
"engines": {
"node": ">=14"
},
"scripts": {
"test": "istanbul cover --dir test/coverage _mocha -- --require @babel/register --require ignore-styles",
"demo": "webpack --env=dist-docs",
"docs": "jsdoc -c ./jsdoc.config.json -d ./docs/code -t ./node_modules/minami --verbose -R ./README.md",
"start": "webpack-dev-server -d --content-base ./src --hot --open",
"dist": "yarn build",
"build": "echo \"[NOTICE] This task will build ALL CardKit versions\"; echo \"[LOG] Building DOM library\"; yarn build-dom; echo \"[LOG] Building server library\"; yarn build-server; echo \"[LOG] Building core library\"; yarn build-core; echo \"[LOG] Building DOM <script> library\"; yarn build-dom-script; echo \"[LOG] Building core <script> library\"; yarn build-core-script",
"build-dom": "webpack --env=dist-dom",
"build-server": "webpack --env=dist-server",
"build-core": "webpack --env=dist-core",
"build-dom-script": "webpack --env=dist-dom-script",
"build-core-script": "webpack --env=dist-core-script",
"test-and-build-all": "yarn test; yarn build; yarn demo; yarn docs"
},
"author": "Chris Hutchinson <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.14.0",
"@babel/preset-env": "^7.14.0",
"@babel/preset-react": "^7.13.13",
"@babel/register": "^7.13.16",
"babel-loader": "^8.2.2",
"chai": "^3.5.0",
"css-loader": "^5.2.4",
"eslint": "^7.25.0",
"eslint-config-standard": "^16.0.2",
"eslint-config-standard-jsx": "^10.0.0",
"eslint-config-standard-react": "^11.0.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-standard": "^5.0.0",
"eslint-webpack-plugin": "^2.5.4",
"file-loader": "^6.2.0",
"ignore-styles": "^5.0.1",
"istanbul": "^1.1.0-alpha.1",
"jsdoc": "^3.4.2",
"jsdom": "^10.1.0",
"lodash": "^4.16.3",
"minami": "^1.1.1",
"minimist": "^1.2.0",
"mocha": "^8.3.2",
"mocha-jsdom": "^1.1.0",
"prettier": "^2.2.1",
"sass": "^1.32.12",
"sass-loader": "^10.1.1",
"sinon": "^1.17.6",
"style-loader": "^2.0.0",
"url-loader": "^4.1.1",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3"
},
"dependencies": {
"btoa": "^1.1.2",
"deep-extend": "^0.6.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-color": "^2.3.2",
"react-dom": "^17.0.2",
"svg2png": "4.0.0"
}
}