-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.54 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
{
"name": "OculusScroll",
"version": "0.4.0",
"description": "A Chrome extension that allows webpage scrolling based on eye tracking.",
"main": "index.js",
"private": false,
"scripts": {
"watch": "webpack --config webpack/webpack.dev.js --watch",
"build": "webpack --config webpack/webpack.prod.js",
"clean": "rimraf dist",
"test": "npx jest",
"style": "prettier --write \"src/**/*.{ts,tsx}\"",
"postinstall": "sh scripts/postinstall.sh"
},
"author": "Prodromos Kolyvakis",
"license": "GNU General Public License (GPLv3)",
"repository": {
"type": "git",
"url": "https://github.com/prokolyvakis/OculusScroll.git"
},
"keywords": [
"WebGazer",
"scroll",
"eye",
"tracking",
"camera",
"webpage"
],
"dependencies": {
"@react-express/server": "0.0.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"tslog": "^3.1.2",
"use-local-storage-state": "^9.0.2"
},
"devDependencies": {
"@types/chrome": "0.0.100",
"@types/jest": "^25.1.4",
"@types/jquery": "^3.3.33",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@webpack-cli/serve": "^1.3.0",
"copy-webpack-plugin": "^6.1.0",
"glob": "^7.1.6",
"html-webpack-plugin": "^5.3.1",
"jest": "^26.6.3",
"path": "^0.12.7",
"prettier": "^2.2.1",
"rimraf": "^3.0.2 ",
"ts-jest": "^25.2.1 ",
"ts-loader": "^6.2.1",
"typescript": "~3.8.3 ",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "~4.2.2"
}
}