-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.55 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
{
"private": true,
"name": "stromberg-quotes",
"version": "0.0.1",
"author": {
"name": "Philipp Meissner",
"url": "https://philippmeissner.dev"
},
"license": "MIT",
"scripts": {
"build": "preact build",
"serve": "sirv build --port 8080 --cors --single",
"dev": "preact watch",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
"test": "jest ./tests"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"extends": [
"preact",
"plugin:@typescript-eslint/recommended"
],
"ignorePatterns": [
"build/"
]
},
"dependencies": {
"@vercel/analytics": "^1.0.2",
"add": "^2.0.6",
"preact": "^10.11.0",
"preact-render-to-string": "^5.2.4",
"preact-router": "^4.1.0",
"tailwindcss": "^3.1.8",
"yarn": "^1.22.19"
},
"devDependencies": {
"@types/enzyme": "^3.10.12",
"@types/jest": "^27.5.1",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"enzyme": "^3.11.0",
"enzyme-adapter-preact-pure": "^4.0.1",
"eslint": "^8.24.0",
"eslint-config-preact": "^1.1.1",
"jest": "^28.1.0",
"jest-preset-preact": "^4.0.2",
"preact-cli": "^3.4.1",
"preact-cli-plugin-env-vars": "^1.2.1",
"preact-cli-tailwind": "^3.0.0",
"sirv-cli": "^2.0.2",
"typescript": "^4.5.2"
},
"resolutions": {
"strip-ansi": "6.0.1"
},
"jest": {
"preset": "jest-preset-preact",
"setupFiles": [
"<rootDir>/tests/__mocks__/browserMocks.ts",
"<rootDir>/tests/__mocks__/setupTests.ts"
]
}
}