-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.35 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.35 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
{
"private": true,
"name": "yarr",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"build": "preact build",
"db": "pocketbase serve --http=\"0.0.0.0:8090\" --publicDir=\"./build\"",
"dev": "preact watch",
"lint": "eslint src",
"test": "jest"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"extends": [
"preact",
"plugin:@typescript-eslint/recommended"
],
"ignorePatterns": [
"build/"
]
},
"dependencies": {
"pocketbase": "^0.16.0",
"preact": "^10.10.0",
"preact-render-to-string": "^5.2.1",
"preact-router": "^3.2.1",
"three": "^0.155.0"
},
"devDependencies": {
"@babel/plugin-transform-react-jsx-source": "^7.22.5",
"@types/enzyme": "^3.10.12",
"@types/jest": "^27.4.1",
"@types/three": "^0.155.0",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"enzyme": "^3.11.0",
"enzyme-adapter-preact-pure": "^4.0.1",
"eslint": "^8.20.0",
"eslint-config-preact": "^1.3.0",
"jest": "^27.5.1",
"jest-preset-preact": "^4.0.5",
"preact-cli": "^3.4.0",
"sirv-cli": "^2.0.2",
"typescript": "^4.5.2"
},
"jest": {
"preset": "jest-preset-preact",
"setupFiles": [
"<rootDir>/tests/__mocks__/browserMocks.ts",
"<rootDir>/tests/__mocks__/setupTests.ts"
]
}
}