-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpackage.json
96 lines (96 loc) · 2.91 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
{
"name": "gloc",
"version": "10.0.14",
"engines": {
"node": "16.19.0",
"npm": "0.39.3"
},
"description": "Browser extension - counts locs on GitHub pages",
"authors": [
"Kas Elvirov <[email protected]> (https://github.com/kas-elvirov)"
],
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/kas-elvirov/gloc/issues"
},
"homepage": "https://github.com/kas-elvirov/gloc#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/kas-elvirov/gloc.git"
},
"keywords": [
"code",
"counter",
"github",
"sloc"
],
"main": "index.js",
"scripts": {
"i": "npm i --legacy-peer-deps -ddd",
"r": "rm -rf node-modules/ && rm package-lock.json && npm run i",
"=== VITE ===": "",
"start": "env-cmd -f .env vite --port 666",
"build": "env-cmd -f .env vite build",
"build:prod": "env-cmd -f .env vite build && grunt",
"preview": "env-cmd -f .env vite preview",
"=== PRECOMMIT ===": "",
"version:up": "npm version patch --no-git-tag-version --force && node ./scripts/upAppVersion.js",
"prettier:fix": "prettier --ignore-path ./.prettierignore --write src"
},
"husky": {
"hooks": {
"pre-commit": "npm run version:up && npm run prettier:fix && git add ."
}
},
"dependencies": {
"@crxjs/vite-plugin": "^2.0.0-beta.26",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^5.15.1",
"@mui/material": "^5.14.18",
"@mui/styled-engine": "^5.15.2",
"@mui/styles": "^5.15.1",
"@reduxjs/toolkit": "^2.5.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.1",
"@types/node": "^22.10.3",
"@types/react": "npm:types-react@^19.0.0-rc.1",
"@types/react-dom": "npm:types-react-dom@^19.0.0-rc.1",
"@types/styled-components": "^4.4.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-react": "^4.3.4",
"eslint-config-prettier": "^9.0.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-prettier": "^4.2.1",
"lodash.debounce": "^4.0.8",
"prettier-eslint": "^16.1.1",
"prettier-eslint-cli": "^8.0.1",
"react": "^19.0.0-rc.1",
"react-dom": "^19.0.0-rc.1",
"react-redux": "^9.2.0",
"react-router-dom": "^7.1.1",
"styled-components": "^5.3.0",
"vite-plugin-checker": "^0.8.0",
"vite-tsconfig-paths": "^5.1.4"
},
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/preset-react": "^7.7.4",
"@types/chrome": "^0.0.81",
"@types/lodash.debounce": "^4.0.9",
"babel-loader": "^8.0.6",
"babel-plugin-import": "^1.13.0",
"env-cmd": "^10.1.0",
"envfile": "^6.2.0",
"eslint": "^8.53.0",
"eslint-plugin-react": "^7.14.2",
"grunt": "^1.5.3",
"grunt-cli": "^1.3.2",
"grunt-contrib-compress": "^1.4.3",
"html-loader": "^0.5.5",
"husky": "^4.2.5",
"prettier": "^3.4.2",
"typescript": "^5.6.3",
"vite": "^6.0.6"
}
}