-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 3.13 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
{
"name": "tabx",
"version": "0.0.7",
"description": "TabX manages your tabs",
"scripts": {
"build": "webpack --mode production --config webpack.config.js",
"dev": "webpack --config webpack.dev.js --watch -O '{\"noUnusedLocals\":false, \"noUnusedParameters\":false}'",
"lint": "eslint --ext .ts,.tsx src",
"lint:fix": "eslint --fix './src/**/*.{ts,tsx}' && prettier --write './src/**/*.{ts,tsx}'",
"test": "jest --config jest.config.js",
"lint:css": "stylelint src/**/*.tsx",
"postinstall": "patch-package"
},
"author": "Hiroki Ihoriya",
"license": "MIT",
"devDependencies": {
"@babel/preset-react": "^7.12.10",
"@geist-ui/react-icons": "^1.0.1",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.2",
"@testing-library/user-event": "^12.7.1",
"@types/axios": "^0.14.0",
"@types/chrome": "^0.0.60",
"@types/jest": "^26.0.15",
"@types/puppeteer": "^5.4.3",
"@types/react": "^16.9.32",
"@types/react-dom": "^16.9.6",
"@types/react-i18next": "^8.1.0",
"@types/react-paginate": "^6.2.1",
"@types/react-router-dom": "^5.1.6",
"@types/recoil": "^0.0.1",
"@types/sinon-chrome": "^2.2.10",
"@types/styled-components": "^5.1.4",
"@types/stylelint": "^9.10.1",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"async-mutex": "^0.2.6",
"awesome-typescript-loader": "^5.2.1",
"axios": "^0.21.2",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "4.5.1",
"css-loader": "^5.0.0",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"file-loader": "^6.2.0",
"fuse.js": "^6.4.6",
"google-cloud-functions-typescript": "^0.0.4",
"html-loader": "^1.3.2",
"html-webpack-plugin": "3.2.0",
"i18next": "^19.8.4",
"immer": "^9.0.6",
"jest": "^26.6.2",
"jest-mock-extended": "^2.0.2-beta2",
"mini-css-extract-plugin": "^1.2.1",
"node-sass": "^7.0.0",
"patch-package": "^6.2.2",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.2.1",
"puppeteer": "^7.0.1",
"react-i18next": "^11.8.5",
"react-router-dom": "^5.2.0",
"recoil": "^0.1.2",
"sass-loader": "^6.0.7",
"sinon-chrome": "^3.0.1",
"style-loader": "^0.20.3",
"styled-components": "^5.2.1",
"stylelint": "^13.8.0",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0",
"throttle-debounce": "^3.0.1",
"ts-jest": "^26.5.0",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"typescript": "^4.2.4",
"webextension-polyfill-ts": "^0.21.0",
"webpack": "4.6.0",
"webpack-cli": "3.1.2",
"webpack-extension-reloader": "^1.1.4",
"webpack-merge": "^5.3.0"
},
"dependencies": {
"@geist-ui/react": "^2.1.5",
"@types/throttle-debounce": "^2.1.0",
"fp-ts": "^2.11.1",
"react": "17.0.1",
"react-dom": "^16.13.1"
},
"keywords": ["react", "typescript"]
}