-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·83 lines (83 loc) · 2.61 KB
/
package.json
File metadata and controls
executable file
·83 lines (83 loc) · 2.61 KB
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
{
"name": "leetcode-night",
"version": "0.6.4",
"description": "A browser extension that enables dark mode & extra features on LeetCode",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ngseke/leetcode-night"
},
"engines": {
"node": ">=18",
"pnpm": ">=8",
"npm": "please-use-pnpm",
"yarn": "please-use-pnpm"
},
"scripts": {
"dev": "vite",
"build": "vite build && node scripts/removeUnnecessaryAssets.js",
"lint": "tsc --noEmit && eslint . --ext .ts,.tsx,.js,.cjs,.jsx",
"lint:fix": "eslint --fix . --ext .ts,.tsx,.js,.cjs,.jsx",
"bump": "npm run lint && node ./scripts/bump.js",
"test": "vitest",
"test:unit": "vitest --exclude=src/tests/e2e",
"test:e2e": "vitest --poolOptions.threads.singleThread=true src/tests/e2e",
"prepare": "husky install",
"preversion": "npm run lint"
},
"dependencies": {
"@types/styled-components": "^5.1.23",
"axios": "^0.26.1",
"clsx": "^1.1.1",
"debounce": "^2.0.0",
"fuzzysort": "^2.0.4",
"graphql": "^16.3.0",
"graphql-request": "^4.2.0",
"i18next": "^21.6.16",
"i18next-browser-languagedetector": "^6.1.4",
"lodash-es": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^11.16.7",
"react-use-storage-state": "^1.0.3",
"styled-components": "^6.1.8",
"tocas": "^4.0.2",
"url-join": "^5.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@crxjs/vite-plugin": "2.0.0-beta.26",
"@testing-library/jest-dom": "^6.4.1",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/chrome": "^0.0.177",
"@types/fs-extra": "^11.0.4",
"@types/lodash-es": "^4.17.12",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "6.21.0",
"@vitejs/plugin-react": "^4.2.0",
"eslint": "^8.8.0",
"eslint-config-react-app": "^7.0.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-testing-library": "^6.2.0",
"fs-extra": "^10.0.0",
"husky": "^8.0.1",
"inquirer": "^8.2.4",
"jsdom": "^24.0.0",
"open": "^8.4.0",
"puppeteer": "^21.10.0",
"sass": "^1.50.0",
"typescript": "^5.2.2",
"vite": "^4.2.0",
"vitest": "^1.2.2"
}
}