-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
54 lines (54 loc) · 1.67 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
{
"name": "react-artboard",
"version": "0.1.1",
"main": "./dist/index.umd.js",
"module": "./dist/index.module.js",
"exports": "./dist/index.modern.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"author": "Matt Kane <m@mk.gg>",
"license": "MIT",
"scripts": {
"clean": "rm -rf dist/* public/*",
"start": "parcel example/index.html --host 0.0.0.0 --out-dir public",
"build:example": "parcel build example/index.html --out-dir public",
"build:library": "microbundle --jsx React.createElement src/index.ts",
"prepare": "yarn clean && yarn build:library"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/preset-env": "^7.14.1",
"@babel/preset-react": "^7.13.13",
"@types/react": "^17.0.5",
"@types/react-dom": "^17.0.3",
"@types/tinycolor2": "^1.4.2",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"microbundle": "^0.13.0",
"parcel-bundler": "^1.12.5",
"prettier": "^2.2.1",
"react": "^17.0.2",
"react-colorful": "^4.4.4",
"react-dom": "^17.0.2",
"react-icons": "^4.2.0",
"react-rangeslider": "^2.2.0",
"react-responsive-modal": "^6.0.1",
"typescript": "^4.2.4"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0"
},
"dependencies": {
"tinycolor2": "^1.4.2"
},
"description": "A realistic paint component",
"repository": "git@github.com:ascorbic/react-artboard.git",
"homepage": "https://github.com/ascorbic/react-artboard"
}