-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
64 lines (64 loc) · 1.87 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
{
"name": "react-joystick-component",
"description": "A snazzy React joystick component",
"version": "1.4.0",
"keywords": [
"react",
"joystick",
"control",
"component",
"typescript"
],
"main": "build/lib/index.js",
"types": "build/lib/index.d.ts",
"files": [
"build/lib",
"src"
],
"scripts": {
"storybook": "start-storybook -p 6006 -c .storybook",
"build": "tsc",
"prepublish": "yarn build",
"deploy-storybook": "storybook-to-ghpages",
"test": "react-scripts test",
"lint": "tslint -c tslint.json 'src/**/*.tsx' --fix && eslint src/**/*.tsx --fix --ext .ts"
},
"repository": "https://github.com/elmarti/react-joystick-component",
"author": "elmarti [email protected]",
"license": "MIT",
"devDependencies": {
"@storybook/addon-actions": "^6.4.9",
"@storybook/addon-essentials": "^6.4.9",
"@storybook/addon-links": "^6.4.9",
"@storybook/react": "^6.4.9",
"@storybook/storybook-deployer": "^2.8.16",
"@testing-library/jest-dom": "^5.16.5",
"@types/jest": "^27.4.0",
"@types/react": "17.0.38",
"@types/react-dom": "^17.0.11",
"@types/storybook__addon-actions": "^5.2.1",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"awesome-typescript-loader": "^5.2.1",
"babel-core": "^6.26.0",
"babel-loader": "8.2.3",
"cpx": "^1.5.0",
"eslint": "^8.6.0",
"jest": "^27.4.7",
"react": "17.0.2",
"react-docgen-typescript-webpack-plugin": "^1.1.0",
"react-dom": "17.0.2",
"react-parallax-tilt": "^1.5.85",
"semantic-release-gitmoji": "^1.4.2",
"storybook-addon-jsx": "^7.3.14",
"ts-jest": "^27.1.2",
"tslint": "^6.1.3",
"typescript": "4.5.4",
"@testing-library/react": "12.1.2",
"react-scripts": "^5.0.1"
},
"peerDependencies": {
"react": ">=17.0.2",
"react-dom": ">=17.0.2"
}
}