-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
115 lines (115 loc) · 3.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "react-hooks-svgdrawing",
"version": "2.1.2",
"license": "MIT",
"description": "React svg drawing library. This library is a React extension of svg-drawing.",
"author": "kmkzt<info.pscreator@gmail.com>",
"keywords": [
"react",
"svg",
"drawing",
"svg-drawing"
],
"types": "lib/index.d.ts",
"main": "lib/index.cjs.js",
"module": "lib/index.esm.js",
"browser": "lib/index.min.js",
"files": [
"lib/**/*.{js,ts}"
],
"directories": {
"lib": "lib",
"doc": "README.md",
"example": "src/example"
},
"repository": "github:kmkzt/react-hooks-svgdrawing",
"homepage": "https://github.com/kmkzt/react-hooks-svgdrawing",
"bugs": {
"url": "https://github.com/kmkzt/react-hooks-svgdrawing/issues",
"email": "info.pscreator@gmail.com"
},
"scripts": {
"dev": "NODE_ENV=development webpack-dev-server",
"prod": "npm-run-all lib:*",
"lib:clear": "rimraf lib/*",
"lib:rollup": "NODE_ENV=production rollup -c",
"lib:tsc": "NODE_ENV=production tsc --emitDeclarationOnly",
"demo:prod": "NODE_ENV=production webpack -p",
"test": "npm-run-all test:*",
"test:unit": "NODE_ENV=test jest --passWithNoTests",
"test:type": "NODE_ENV=production tsc --noEmit",
"lint": "eslint ./src --ext .js,.ts,.tsx",
"prepare": "yarn prod",
"release": "release-it"
},
"dependencies": {
"svg-drawing": "2.1.1"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@babel/core": "7.11.6",
"@babel/plugin-transform-runtime": "7.11.5",
"@babel/preset-env": "7.11.5",
"@babel/preset-react": "7.10.4",
"@babel/preset-typescript": "7.10.4",
"@rollup/plugin-commonjs": "11.1.0",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "7.1.3",
"@rollup/plugin-replace": "2.3.4",
"@types/dotenv-webpack": "1.8.0",
"@types/eslint": "6.8.1",
"@types/eslint-plugin-prettier": "3.1.3",
"@types/html-webpack-plugin": "3.2.9",
"@types/jest": "24.9.1",
"@types/node": "12.12.70",
"@types/prettier": "1.19.1",
"@types/react": "16.9.56",
"@types/react-dom": "16.9.16",
"@types/rimraf": "2.0.5",
"@types/uglifyjs-webpack-plugin": "1.1.5",
"@types/webpack": "4.41.38",
"@types/webpack-dev-server": "3.11.6",
"@types/webpack-merge": "4.1.5",
"@typescript-eslint/eslint-plugin": "2.34.0",
"@typescript-eslint/parser": "2.34.0",
"@typescript-eslint/typescript-estree": "2.34.0",
"babel-jest": "24.9.0",
"babel-loader": "8.1.0",
"babel-plugin-add-module-exports": "1.0.4",
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
"eslint": "6.8.0",
"eslint-config-prettier": "6.11.0",
"eslint-loader": "4.0.2",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-react": "7.20.6",
"eslint-plugin-react-hooks": "4.1.2",
"html-loader": "0.5.5",
"html-webpack-plugin": "3.2.0",
"jest": "24.9.0",
"npm-run-all": "4.1.5",
"pressure": "2.1.2",
"prettier": "1.19.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"release-it": "13.7.2",
"resolve-url-loader": "3.1.5",
"rimraf": "3.0.2",
"rollup": "1.32.1",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-size-snapshot": "0.12.0",
"rollup-plugin-sourcemaps": "0.6.3",
"rollup-plugin-terser": "5.3.1",
"ts-loader": "6.2.2",
"tsconfig-paths-webpack-plugin": "3.3.0",
"typescript": "3.9.10",
"webpack": "4.44.2",
"webpack-cli": "3.3.12",
"webpack-dev-server": "3.11.3",
"webpack-merge": "4.2.2"
},
"resolutions": {
"http-proxy": "1.18.1"
}
}