forked from wakatime/browser-wakatime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
124 lines (124 loc) · 3.49 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "chrome-wakatime",
"private": true,
"scripts": {
"dev": "clap dev",
"postinstall": "clap postinstall",
"lint": "clap lint",
"start": "clap build",
"test": "clap test",
"validate": "npm ls",
"watch": "clap watch"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"lint-staged": {
"*.json": [
"prettier --write"
],
"*.{js|jsx|ts|tsx}": [
"eslint",
"prettier --write",
"git add"
]
},
"dependencies": {
"@manaflair/redux-batch": "^1.0.0",
"@reduxjs/toolkit": "^1.5.0",
"bootstrap": "3.4.1",
"classnames": "^2.3.1",
"create-react-class": "^15.6.3",
"font-awesome": "4.6.3",
"jquery": "^3.0.0",
"moment": "^2.13.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-redux": "^7.2.2",
"react-transition-group": "^1.0.0",
"redux-logger": "^3.0.6",
"webextension-polyfill-ts": "^0.22.0"
},
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@testing-library/dom": "^7.29.4",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.3",
"@testing-library/user-event": "^12.6.0",
"@types/chrome": "0.0.128",
"@types/classnames": "^2.2.11",
"@types/copy-webpack-plugin": "^6.4.0",
"@types/firefox-webext-browser": "^82.0.0",
"@types/jest": "^26.0.20",
"@types/jquery": "^3.5.5",
"@types/node": "^14.14.20",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-redux": "^7.1.15",
"@types/redux-logger": "^3.0.8",
"@types/remote-redux-devtools": "^0.5.4",
"@types/shelljs": "^0.8.8",
"@types/wait-on": "^5.2.0",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"@xarc/run": "^1.0.4",
"axios": "^0.21.1",
"babel-jest": "^22.1.0",
"babel-loader": "^8.2.2",
"browserify": "^17.0.0",
"chai": "^4.1.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^7.0.0",
"del": "^3.0.0",
"eslint": "^7.17.0",
"eslint-config-kentcdodds": "^17.3.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest-dom": "^3.6.5",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-sort-keys-fix": "^1.1.1",
"eslint-plugin-testing-library": "^3.10.1",
"eslint-plugin-typescript-sort-keys": "^1.5.0",
"gulp": "^3.9.1",
"husky": "^4.3.7",
"jest": "^26.6.3",
"jest-cli": "^22.1.4",
"jsdom": "^16.4.0",
"jshint": "^2.9.2",
"jsxhint": "^0.15.1",
"laravel-elixir": "^6.0.0-17",
"laravel-elixir-browserify-official": "^0.1.3",
"lint-staged": "^10.5.3",
"mocha": "^5.0.0",
"mocha-sinon": "^2.0.0",
"mocha-traceur": "^2.1.0",
"phantomjs": "^2.1.7",
"popper.js": "^1.14.6",
"prettier": "^2.2.1",
"prettier-plugin-packagejson": "^2.2.9",
"prettier-plugin-sort-json": "0.0.1",
"remote-redux-devtools": "^0.5.16",
"remotedev-server": "^0.3.1",
"rimraf": "^3.0.2",
"shelljs": "^0.8.4",
"sinon": "^4.2.2",
"sinon-chai": "^2.8.0",
"sinon-chrome": "^2.2.4",
"traceur": "^0.0.111",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.14",
"ts-node": "^9.1.1",
"typescript": "^4.1.3",
"wait-on": "^5.2.1",
"web-ext": "^5.5.0",
"webpack": "^5.14.0",
"webpack-cli": "^4.3.1"
}
}