-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
83 lines (83 loc) · 2.2 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
{
"name": "react-roulette-pro",
"version": "3.2.2",
"description": "The best React roulette",
"author": "IvanAdmaers (https://ivanadmaers.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/IvanAdmaers/react-roulette-pro"
},
"bugs": {
"url": "https://github.com/IvanAdmaers/react-roulette-pro/issues"
},
"homepage": "https://react-roulette-pro.ivanadmaers.com",
"private": false,
"keywords": [
"react",
"roulette",
"spinning",
"wheel",
"fortune",
"prize",
"react-roulette",
"react-roulette-pro"
],
"main": "dist/index.js",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"engines": {
"node": ">=14"
},
"scripts": {
"dev": "webpack --watch",
"build": "webpack",
"prepare": "npm run build",
"test": "jest",
"lint": "eslint ."
},
"peerDependencies": {
"react": ">=17.0.0",
"react-dom": ">=17.0.0"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.4",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.4",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^28.1.4",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"babel-jest": "^27.5.1",
"babel-loader": "^8.2.2",
"css-loader": "^5.1.3",
"eslint": "^8.19.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"html-webpack-plugin": "^5.3.1",
"jest": "^27.5.1",
"mini-css-extract-plugin": "^2.5.3",
"prettier": "^2.5.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-refresh": "^0.11.0",
"react-test-renderer": "^16.8.6",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"webpack": "^5.65.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^4.6.0"
},
"files": [
"dist"
]
}