-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.61 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.61 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
{
"name": "camera-projector-calibration-v1",
"version": "1.0.0",
"description": "Complete camera/projector calibration system with Firebase integration",
"type": "module",
"scripts": {
"start": "parcel public/camera-setup-demo.html --open",
"dev": "parcel watch public/camera-setup-demo.html",
"build": "parcel build public/*.html",
"test": "jest",
"test:unit": "jest tests/unit",
"test:integration": "jest tests/integration",
"test:e2e": "playwright test",
"test:screenshots": "node tests/puppeteer/test-runner.js",
"camera-setup": "parcel public/camera-setup-demo.html --open",
"projector-setup": "parcel public/projector-setup-demo.html --open",
"projector-client": "parcel public/projector-client.html --open",
"client-app": "parcel public/client-app.html --open",
"lint": "eslint src/",
"format": "prettier --write src/"
},
"keywords": [
"camera",
"projector",
"calibration",
"opencv",
"firebase",
"computer-vision",
"augmented-reality"
],
"author": "QR Pose Estimation Team",
"license": "MIT",
"dependencies": {
"firebase": "^10.12.2",
"jimp": "^0.22.0",
"jsdom": "^22.0.0",
"jsqr": "^1.4.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"eslint": "^8.0.0",
"jest": "^29.0.0",
"parcel": "^2.8.3",
"playwright": "^1.40.0",
"prettier": "^3.0.0",
"puppeteer": "^24.22.0"
},
"jest": {
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"<rootDir>/tests/setup.js"
]
},
"browserslist": [
"defaults",
"not IE 11"
]
}