-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.83 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
{
"name": "bugcrusher",
"description": "Capture console logs and fetch errors",
"repository": {
"type": "git",
"url": "git+https://github.com/nikolamar/bugcrusher.git"
},
"scripts": {
"test": "jest --passWithNoTests",
"test:ci": "jest --coverage --passWithNoTests",
"lint": "eslint --cache --fix ./src",
"watch:e6": "tsc --watch -p tsconfig.json",
"watch:e5": "tsc --watch -p tsconfig.es5.json",
"copy:types": "cp src/types.d.ts dist/lib/es5 && cp src/types.d.ts dist/lib/es6",
"compile": "rm -rf dist/lib && tsc && tsc --build tsconfig.es5.json && npm run copy:types"
},
"author": "Nikola Marjanovic <nikolamar@gmail.com>",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@commitlint/prompt-cli": "^17.0.3",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@types/crypto-js": "^4.1.1",
"@types/file-saver": "^2.0.5",
"@types/jest": "^28.1.5",
"@types/node": "^18.0.4",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.8.0",
"esbuild": "^0.14.49",
"esbuild-jest": "^0.5.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^5.5.1",
"husky": "^8.0.1",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"jest-transform-stub": "^2.0.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"typescript": "^4.6.3"
},
"dependencies": {
"crypto-js": "^4.1.1",
"file-saver": "^2.0.5"
}
}