forked from aml2610/react-painter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 2.71 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
{
"name": "react-painter",
"version": "0.4.0",
"description": "A React component for drawing in a canvas",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "tslint src/**/*.{ts,tsx}",
"prettify": "prettier --write src/**/*.{ts,tsx}",
"build": "tsc --p tsconfig.json",
"prebuild": "rimraf dist",
"prepublish": "npm run build",
"test": "jest",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"deploy-storybook": "storybook-to-ghpages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aml2610/react-painter.git"
},
"keywords": [
"react",
"canvas",
"drawing"
],
"author": {
"name": "Andrei-Marius Longhin",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/aml2610/react-painter/issues"
},
"homepage": "https://github.com/aml2610/react-painter#readme",
"peerDependencies": {
"prop-types": ">=15",
"react": ">=0.14.x"
},
"devDependencies": {
"@storybook/addon-actions": "^3.4.0",
"@storybook/addon-knobs": "^3.4.0",
"@storybook/addon-links": "^3.4.0",
"@storybook/addons": "^3.4.0",
"@storybook/react": "^3.4.0",
"@storybook/storybook-deployer": "^2.3.0",
"@types/jest": "^22.2.2",
"@types/prop-types": "^15.5.2",
"@types/react": "^16.3.5",
"@types/react-dom": "^16.0.4",
"awesome-typescript-loader": "4.0.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-runtime": "^6.26.0",
"canvas-prebuilt": "1.6.11",
"core-js": "^2.5.4",
"eslint": "^4.1.1",
"eslint-config-react-app": "^2.1.0",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.7.0",
"jest": "^22.4.3",
"prettier": "^1.19.1",
"prop-types": "^15.6.1",
"react": "16.3.2",
"react-dom": "16.3.3",
"react-testing-library": "^2.1.0",
"rimraf": "^2.6.2",
"ts-jest": "^22.4.2",
"tslint": "^5.9.1",
"tslint-react": "^3.5.1",
"typescript": "^2.8.1"
},
"dependencies": {},
"prettier": {
"singleQuote": true,
"printWidth": 90
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testURL": "http://localhost",
"testRegex": "test/.*.(tsx?|jsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"collectCoverageFrom": [
"src/**/*.tsx",
"src/**/*.ts"
],
"coverageReporters": [
"text-summary"
]
}
}