-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
45 lines (45 loc) · 1.6 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
{
"name": "hashpass",
"version": "2.1.7",
"scripts": {
"build-production": "rm -rf dist && webpack --config webpack.production.js",
"build-development": "rm -rf dist && webpack --config webpack.development.js",
"check": "jest --config jest.config.js && eslint --config .eslintrc.js --ignore-path .gitignore --report-unused-disable-directives --max-warnings 0 'src/**/*.tsx' && prettier --config .prettierrc.js --ignore-path .gitignore --check .",
"format": "prettier --config .prettierrc.js --ignore-path .gitignore --write ."
},
"devDependencies": {
"@types/chrome": "^0.0.254",
"@types/debounce": "^1.2.4",
"@types/jest": "^29.5.11",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.55.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-webpack": "^0.13.8",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"base64-js": "^1.5.1",
"debounce": "^2.0.0",
"fast-sha256": "^1.3.0",
"jss": "^10.10.0",
"jss-preset-default": "^10.10.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-jss": "^10.10.0"
}
}