-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (53 loc) · 1.39 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
{
"name": "emiljohansson.dev",
"version": "1.2.1",
"description": "Playground for Emil Johansson",
"keywords": [
"emil",
"johansson"
],
"license": "MIT",
"author": "[email protected]",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"build": "turbo build",
"cy:open": "cypress open",
"cy:run": "cypress run --headless --browser chrome",
"dev": "turbo dev --parallel",
"export": "turbo export",
"format": "prettier --write \"**/*.{ts,tsx,js,md,json,html,css,svelte}\"",
"lint": "pnpm lint:eslint && pnpm lint:prettier",
"lint:eslint": "turbo lint",
"lint:prettier": "pnpm prettier:check",
"prepare": "husky install",
"prettier:check": "prettier --check .",
"start": "turbo start",
"test": "turbo test",
"test:ci": "start-server-and-test start http://localhost:3000 \"cypress run --headless --browser chrome\"",
"type-check": "turbo type-check"
},
"dependencies": {
"@tailwindcss/typography": "0.5.9"
},
"devDependencies": {
"@cypress-audit/lighthouse": "1.4.2",
"@types/jest": "29.5.14",
"@types/node": "18.0.1",
"@types/react": "19.0.2",
"@types/react-dom": "19.0.2",
"axe-core": "4.4.3",
"cypress": "13.17.0",
"cypress-axe": "1.5.0",
"husky": "8.0.1",
"jest": "29.7.0",
"prettier": "2.8.4",
"start-server-and-test": "2.0.3",
"ts-jest": "29.2.5",
"turbo": "2.3.3",
"typescript": "5.7.2"
},
"packageManager": "[email protected]"
}