-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
54 lines (54 loc) · 1.51 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
{
"name": "rows-x",
"private": true,
"version": "1.29.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"test:e2e": "tsc && vite build --mode=e2e && jest --maxWorkers=1",
"preview": "vite preview",
"lint": "eslint src -c ./.eslintrc.cjs --ext .jsx,.js,.ts,.tsx",
"check-types": "tsc --noEmit",
"prepare": "husky",
"clean": "rm -rf dist"
},
"prettier": "@rows/prettier-config",
"dependencies": {
"@types/expect-puppeteer": "^5.0.6",
"@types/jest-environment-puppeteer": "^5.0.6",
"@types/puppeteer": "^7.0.4",
"eslint-plugin-import": "^2.29.1",
"preact": "^10.19.3",
"ua-parser-js": "^1.0.37"
},
"devDependencies": {
"@crxjs/vite-plugin": "^2.0.0-beta.23",
"@modyfi/vite-plugin-yaml": "^1.1.0",
"@preact/preset-vite": "^2.8.1",
"@types/chrome": "^0.0.256",
"@types/jest": "^29.5.11",
"@types/js-yaml": "^4.0.9",
"@types/ua-parser-js": "^0.7.39",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.0.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.0.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^9.0.10",
"jest": "^29.7.0",
"jest-puppeteer": "^9.0.2",
"js-yaml": "^4.1.0",
"prettier": "2.4",
"puppeteer": "^22.0.0",
"ts-jest": "^29.1.2",
"typescript": "^4.5.0",
"vite": "^5.0.11"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}