-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
84 lines (84 loc) · 2.5 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
{
"name": "remote-calibrator",
"version": "0.7.22",
"description": "Useful calibration tools for remote psychophysics experiments",
"main": "lib/RemoteCalibrator.min.js",
"directories": {
"lib": "lib",
"homepage": "homepage"
},
"scripts": {
"setup": "git submodule update --init --recursive && cd src/WebGazer4RC && bun i && cd ../.. && bun i",
"format:biome": "biome format --write .",
"format:prettier": "prettier --write \"**/*.{md,html,css,scss}\"",
"format": "bun run format:biome && bun run format:prettier",
"lint": "biome lint --apply .",
"start": "webpack serve --env=development",
"build": "webpack --env=production",
"test": "webpack --env mocha --config=test/webpack.config.test.js && mocha test-exec/test.min.js",
"prepare": "husky install",
"netlify": "cp -r ./lib ./homepage",
"phrases": "node i18n/fetch-languages-sheets.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EasyEyes/remote-calibrator.git"
},
"author": "Peiling Jiang",
"license": "MIT",
"bugs": {
"url": "https://github.com/EasyEyes/remote-calibrator/issues"
},
"homepage": "https://calibrator.app",
"devDependencies": {
"@babel/core": "^7.26.0",
"@biomejs/biome": "1.9.4",
"animate.css": "^4.1.1",
"autoprefixer": "^10.4.20",
"babel-loader": "^9.2.1",
"bufferutil": "^4.0.8",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"cssnano": "^7.0.6",
"googleapis": "^144.0.0",
"husky": "^9.1.6",
"jsdom": "^25.0.1",
"leader-line-new": "^1.1.9",
"lint-staged": "^15.2.10",
"mocha": "^10.8.2",
"node-polyfill-webpack-plugin": "^4.0.0",
"platform": "^1.3.6",
"postcss-loader": "^8.1.1",
"prettier": "^3.3.3",
"react-fast-compare": "^3.2.2",
"sass": "^1.80.6",
"sass-loader": "^16.0.3",
"style-loader": "^4.0.0",
"svg-inline-loader": "^0.8.2",
"sweetalert2": "^11.14.5",
"terser-webpack-plugin": "^5.3.10",
"tinycolor2": "^1.6.0",
"tone": "14.7.77",
"url-loader": "^4.1.1",
"utf-8-validate": "^6.0.5",
"webpack": "^5.96.1",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0",
"webpack-modules": "^1.0.0",
"xlsx": "^0.18.5"
},
"lint-staged": {
".": [
"biome check --apply --no-errors-on-unmatched"
],
"*.{css,scss,md,html}": [
"prettier --write"
]
},
"files": [
"lib",
"CHANGELOG.md"
]
}