-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.27 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
{
"name": "panaedit",
"version": "0.4.0",
"type": "module",
"description": "",
"keywords": [],
"author": "Laszlo E Kovacs",
"license": "BSD",
"devDependencies": {
"@playwright/experimental-ct-react": "^1.32.2",
"@playwright/test": "^1.32.2",
"@reduxjs/toolkit": "^1.9.3",
"@types/filesystem": "^0.0.32",
"@types/wicg-file-system-access": "^2020.9.5",
"autoprefixer": "^10.4.14",
"immer": "^9.0.21",
"lodash": "^4.17.21",
"postcss": "^8.4.21",
"prettier-plugin-tailwindcss": "^0.2.7",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-redux": "^8.0.2",
"redux": "^4.2.0",
"showdown": "^2.1.0",
"tailwindcss": "^3.3.1",
"typescript": "^5.0.3",
"vite": "^4.2.1",
"vitest": "^0.29.8"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"vitest": "vitest",
"ii": "npm install",
"playwright": "playwright test",
"playwright:debug": "playwright test --headed --browser=chromium --browser=firefox --browser=webkit --verbose",
"playwright:ui": "playwright test --ui",
"playwright:codegen": "playwright codegen",
"test-ct": "playwright test -c playwright-ct.config.ts",
"linecount": "node ./tools/linecount.js",
"genlist": "node ./tools/genlist.js"
},
"dependencies": {
"react-query": "^3.39.3"
}
}