forked from blackjk3/react-signature-pad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.55 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
{
"name": "@creatdevsolutions/cs-react-signature-pad",
"version": "0.1.0",
"description": "A signature pad implementation for react with typescript",
"main": "build/index.js",
"publishConfig": {
"registry": "https://registry.npmjs.com",
"access": "public"
},
"files": [
"build"
],
"scripts": {
"start": "webpack-dev-server --watch --hot --config ./config/webpack.dev.js",
"build": "npm run lint && npm run build:ts",
"build:ts": "tsc -d --declarationDir build",
"lint": "tslint src/**/* "
},
"keywords": [
"react",
"react-component",
"signature",
"canvas",
"form",
"ui",
"pad",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/creatdevsolutions/cs-react-signature-pad.git"
},
"author": "Marten Wallewein, Jason Kadrmas",
"license": "MIT",
"devDependencies": {
"@material-ui/core": "^3.3.1",
"@material-ui/icons": "^3.0.1",
"@types/file-saver": "^1.3.1",
"@types/jsdom": "^11.12.0",
"@types/react": "^16.4.14",
"@types/react-dom": "^16.0.7",
"awesome-typescript-loader": "^5.2.1",
"css-loader": "^1.0.0",
"file-saver": "^2.0.0-rc.4",
"html-webpack-plugin": "^3.2.0",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"style-loader": "^0.22.1",
"tslib": "^1.9.3",
"typescript": "^3.1.3",
"typings-for-css-modules-loader": "^1.7.0",
"webpack": "^4.23.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"peerDependencies": {
"react": "^16.6.0",
"react-dom": "^16.6.0"
}
}