-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.71 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
{
"private": true,
"name": "dailygametrivia",
"version": "0.0.0",
"author": "Arthur <arthur@corenzan.com>",
"license": "Apache-2.0",
"browserslist": "> 1%, last 2 versions, not dead",
"source": "src/index.html",
"type": "module",
"scripts": {
"prepare": "test -f .git/hooks/pre-commit || cp scripts/pre-commit .git/hooks/pre-commit",
"import": "node scripts/import.js",
"format": "prettier --cache",
"lint": "eslint --report-unused-disable-directives --max-warnings 0 --cache",
"fix": "npm run format -- --write . && npm run lint -- --fix .",
"typecheck": "tsc --noEmit",
"prestart": "test -d node_modules || npm ci",
"start": "parcel",
"prebuild": "npm run format -- --check --loglevel warn . && npm run lint -- --quiet . && npm run typecheck",
"build": "parcel build"
},
"dependencies": {
"@floating-ui/react-dom": "^2.1.0",
"fastest-levenshtein": "^1.0.16",
"lodash.debounce": "^4.0.8",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-wrap-balancer": "^1.1.1",
"resetize": "^31.2.0"
},
"devDependencies": {
"@parcel/packager-raw-url": "^2.12.0",
"@parcel/transformer-webmanifest": "^2.12.0",
"@types/lodash.debounce": "^4.0.9",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"parcel": "^2.12.0",
"prettier": "^3.2.5",
"process": "^0.11.10",
"typescript": "^5.4.5"
}
}