-
-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathpackage.json
118 lines (118 loc) · 3.87 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "Testing Playground",
"version": "1.16.0",
"description": "Simple and complete DOM testing playground that encourage good testing practices.",
"author": "Stephan Meijer <[email protected]>",
"homepage": "https://testing-playground.com",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/testing-library/testing-playground"
},
"bugs": {
"url": "https://github.com/testing-library/testing-playground/issues"
},
"scripts": {
"dev": "netlify dev",
"dev:public": "vite",
"start": "run-s build:* start:*",
"start:netlify": "netlify dev",
"start:public": "cross-env NODE_ENV=production vite preview",
"build": "run-s clean build:*",
"build:public": "cross-env NODE_ENV=production vite build",
"build:lambda": "cross-env NODE_ENV=production tsx ./scripts/build-lambda.mts",
"build:chromium": "cross-env NODE_ENV=production tsx ./scripts/build-extension.mts --target chromium",
"build:firefox": "cross-env NODE_ENV=production tsx ./scripts/build-extension.mts --target firefox-desktop",
"lint": "run-s lint:*",
"lint:eslint": "eslint . --quiet --fix",
"lint:prettier": "prettier . --write",
"clean": "run-p clean:*",
"clean:cache": "rimraf ./.cache",
"clean:dist": "rimraf ./dist",
"ci:lint": "eslint",
"ci:changelog": "node scripts/changelog.js",
"test": "vitest",
"cypress:open": "cypress open",
"cypress:run": "cypress run"
},
"dependencies": {
"@primer/octicons-react": "^10.1.0",
"@reach/dialog": "^0.10.5",
"@reach/menu-button": "^0.12.1",
"@testing-library/dom": "^9.3.0",
"@testing-library/user-event": "^14.4.3",
"codemirror": "5.54.0",
"crx-bridge": "^2.1.0",
"deep-diff": "^1.0.2",
"dom-accessibility-api": "^0.4.7",
"isomorphic-fetch": "^2.2.1",
"js-beautify": "^1.13.0",
"lodash.debounce": "4.0.8",
"lodash.throttle": "^4.1.1",
"lz-string": "^1.4.4",
"memoize-one": "^5.1.1",
"pretty-format": "26.0.1",
"query-string": "^6.13.7",
"react": "^16.14.0",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "^16.14.0",
"react-router-dom": "^5.2.0",
"react-toastify": "^6.2.0",
"react-toggle": "^4.1.1",
"react-virtualized-auto-sizer": "^1.0.2",
"react-window": "^1.8.6",
"rollup-plugin-node-polyfills": "^0.2.1",
"use-effect-reducer": "^0.6.1"
},
"devDependencies": {
"@babel/preset-react": "^7.18.6",
"@testing-library/cypress": "^7.0.2",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^10.4.9",
"@testing-library/react-hooks": "^3.7.0",
"@types/fs-extra": "^9.0.4",
"@types/node": "^20.1.4",
"@typescript-eslint/parser": "^5.59.6",
"@vitejs/plugin-react": "^4.0.0",
"chrome-launch": "^1.1.4",
"conventional-changelog": "^3.1.24",
"conventional-changelog-config-spec": "^2.1.0",
"cross-env": "^7.0.3",
"cypress": "^6.0.1",
"eslint": "^7.15.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-prettier": "^3.2.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-vitest-globals": "^1.3.1",
"fs-extra": "^9.0.1",
"get-port": "^5.1.1",
"git-semver-tags": "^4.1.1",
"husky": "^4.3.5",
"jest-extended": "^0.11.5",
"lint-staged": "^10.5.3",
"netlify-cli": "^15.1.1",
"npm-run-all": "^4.1.5",
"postcss-import": "^15.1.0",
"postcss-modules": "^6.0.0",
"prettier": "^2.2.1",
"prettier-plugin-tailwindcss": "^0.3.0",
"react-test-renderer": "^16.14.0",
"rimraf": "^5.0.1",
"tailwindcss": "^1.9.6",
"tsx": "^3.12.7",
"vite": "^4.3.9",
"vitest": "^0.31.1",
"web-ext": "^5.5.0",
"workbox-build": "^5.1.4",
"zx": "^7.2.2"
},
"keywords": [],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}