-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.14 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
{
"name": "rl-web",
"private": true,
"scripts": {
"dev": "next dev",
"build": "npm run build:wasm && next build",
"build:wasm": "wasm-pack build -t web crate",
"start": "next start",
"lint": "next lint",
"format": "prettier --write 'src'",
"test": "npm run test:unit && npm run test:e2e",
"test:e2e": "playwright test tests/e2e",
"test:unit": "jest tests/unit"
},
"postcss": {
"plugins": {
"tailwindcss": {}
}
},
"prettier": {
"plugins": [
"prettier-plugin-tailwindcss"
],
"tailwindFunctions": [
"clsx"
]
},
"dependencies": {
"@tanstack/react-query": "5.40.1",
"clsx": "2.1.1",
"comlink": "4.4.1",
"next": "14.2.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"tailwindcss": "3.4.4",
"zustand": "4.5.2"
},
"devDependencies": {
"@playwright/test": "1.44.1",
"@types/node": "20.14.2",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"eslint": "8.57.0",
"eslint-config-next": "14.2.3",
"jest": "29.7.0",
"prettier": "3.3.1",
"prettier-plugin-tailwindcss": "0.6.2",
"typescript": "5.4.5"
}
}