-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.42 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
85
86
87
88
89
90
91
92
93
{
"name": "noskop",
"version": "0.1.0",
"description": "Tools for expressive microscopy",
"author": "Nate Dube <nate@ndube.com>",
"license": "GPL-3.0",
"private": false,
"dependencies": {
"@blueprintjs/core": "^5.16.2",
"@blueprintjs/icons": "^5.16.0",
"@blueprintjs/popover2": "^2.1.10",
"@blueprintjs/select": "^5.3.3",
"dualsense-ts": "5.1.8",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-full-screen": "^1.1.1",
"react-scripts": "5.0.1",
"react-webcam": "^7.2.0",
"react-zdog": "^1.0.11",
"styled-components": "^6.1.13",
"web-vitals": "^4.2.4",
"zdog": "^1.1.3"
},
"devDependencies": {
"@babel/core": "^7.25.7",
"@babel/plugin-syntax-flow": "^7.26.0",
"@babel/plugin-transform-react-jsx": "^7.25.2",
"@testing-library/dom": ">=7.21.4",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.13",
"@types/node": "^22.5.2",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/styled-components": "^5.1.34",
"@types/w3c-web-serial": "^1.0.7",
"@types/zdog": "^1.1.7",
"barrelsby": "^2.8.1",
"prettier": "^3.4.2",
"react-is": ">=18.3.1",
"typescript": "^5.7.2",
"ts-jest": "^29.2.5"
},
"scripts": {
"prestart": "yarn barrels",
"start": "react-scripts start",
"prebuild": "yarn barrels",
"build": "react-scripts build",
"lint": "eslint src",
"test": "jest --forceExit",
"coverage": "jest --coverage --forceExit",
"eject": "react-scripts eject",
"barrels": "barrelsby --directory=src --delete --location=below --name='index.tsx' --exclude='.d.ts' --exclude='spec.ts$' --input-type=module"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts",
"tsx"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node",
"preset": "ts-jest"
}
}