-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.41 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
{
"name": "joebateson.com",
"description": "My site. Hello, World!",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"develop": "yarn build && yarn preview",
"clean": "rm -rf dist && rm -rf node_modules",
"serve:lhci": "yarn develop",
"test:lint": "eslint .",
"test:e2e": "start-server-and-test develop http://localhost:3000 jest"
},
"author": "Joe Bateson",
"devDependencies": {
"@jbateson/eslint-config": "2.3.0",
"@lhci/cli": "0.9.0",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"astro": "1.9.2",
"astro-critters": "2.1.6",
"axe-playwright": "2.0.1",
"babel-eslint": "10.1.0",
"eslint": "7.32.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-node": "0.3.9",
"eslint-plugin-flowtype": "8.0.3",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.34.1",
"eslint-plugin-react-hooks": "4.6.2",
"http-server": "14.1.1",
"jest": "29.7.0",
"playwright-chromium": "1.44.0",
"playwright-core": "1.44.0",
"prettier": "2.8.8",
"start-server-and-test": "2.0.3"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"tabWidth": 2,
"printWidth": 110
},
"packageManager": "[email protected]"
}