-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
81 lines (81 loc) · 2.42 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
{
"name": "@drill4j/browser-extension",
"version": "0.3.41",
"license": "Apache-2.0",
"scripts": {
"build": "set NODE_ENV=development&& webpack",
"start": "set NODE_ENV=development&& webpack --watch",
"typecheck": "tsc --project tsconfig.json --noEmit --skipLibCheck",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest --passWithNoTests -c jest.unit.js",
"coverage": "jest -c jest.unit.js --coverage --colors"
},
"dependencies": {
"@drill4j/ui-kit": "0.1.57",
"@redneckz/react-bem-helper": "^2.0.3",
"@redneckz/react-dispatcher": "^0.0.6",
"axios": "^0.19.2",
"bootstrap": "^4.5.3",
"final-form": "^4.20.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-draggable": "^4.3.1",
"react-final-form": "^6.5.1",
"react-router-dom": "^5.1.2",
"rxjs": "^6.5.5",
"uuid": "^8.3.2",
"webextension-polyfill-ts": "^0.14.0",
"xxhashjs": "^0.2.2"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/chrome": "0.0.126",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.9",
"@types/react": "^16.14.0",
"@types/react-dom": "^16.9.9",
"@types/react-router-dom": "^5.1.6",
"@types/uuid": "^8.3.0",
"@types/xxhashjs": "^0.2.2",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"awesome-typescript-loader": "^5.2.1",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.5.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-json": "^2.1.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "0.0.0-8e5adfbd7",
"file-loader": "^6.0.0",
"jest": "^26.6.3",
"jest-extended": "^0.11.5",
"lint-staged": "^10.1.7",
"mini-css-extract-plugin": "^0.9.0",
"prettier": "^2.0.5",
"sass": "^1.43.4",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.4",
"ts-jest": "^26.5.2",
"typescript": "^4.1.2",
"webpack": "^4.43.0",
"webpack-cli": "^4.4.0",
"webpack-dev-server": "^3.11.0",
"webpack-extension-reloader": "^1.1.4"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"git add"
],
"*.{scss,md}": [
"prettier --write",
"git add"
]
}
}