-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.99 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.99 KB
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
{
"name": "mouse-data-visualizer",
"version": "1.0.0",
"description": "A visual playground for the WindMouse JavaScript library. Edit settings in real time and fine tune your mouse movements.",
"main": "src/index.tsx",
"scripts": {
"dev:webpack": "webpack --mode development",
"dev:react": "webpack-dev-server --mode development --port 3000",
"prod:webpack": "webpack --mode production",
"format": "prettier --write \"src/**/*.tsx\"",
"lint": "tslint -p tsconfig.json"
},
"repository": {
"type": "git",
"directory": "https://github.com/arevi/mouse-data-visualizer.git"
},
"bugs": {
"url": "https://github.com/arevi/mouse-data-visualizer/issues"
},
"keywords": [
"windmouse",
"mouse movement",
"visualizer",
"javascript",
"typescript",
"react"
],
"homepage": "https://github.com/arevi/mouse-data-visualizer",
"author": "Armin Dizdarevic",
"license": "MIT",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.30",
"@fortawesome/free-solid-svg-icons": "^5.14.0",
"@fortawesome/react-fontawesome": "^0.1.11",
"@hookform/resolvers": "^0.1.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hook-form": "^6.8.3",
"windmouse": "^1.0.5",
"yup": "^0.29.3"
},
"devDependencies": {
"@types/html-webpack-plugin": "^3.2.3",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.1",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"@types/webpack": "^4.41.22",
"@types/webpack-dev-server": "^3.11.0",
"@types/yup": "^0.29.7",
"css-loader": "^4.3.0",
"html-webpack-plugin": "^4.4.1",
"jest": "^26.4.2",
"prettier": "^2.1.2",
"style-loader": "^1.2.1",
"ts-jest": "^26.4.0",
"ts-loader": "^8.0.4",
"ts-node": "^9.0.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^5.0.0",
"typescript": "^4.0.3",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}