-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
54 lines (54 loc) · 1.51 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
{
"name": "tomato-clock",
"version": "6.0.2",
"description": "Tomato Clock is a simple browser extension for managing your productivity.",
"main": "src/background.js",
"scripts": {
"build": "webpack --mode=production && node ./scripts/build-zip.js",
"lint": "eslint src",
"lint-fix": "eslint --fix src",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "webpack --watch",
"watch-firefox": "web-ext run --source-dir ./dist"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/samueljun/tomato-clock.git"
},
"keywords": [
"WebExtension"
],
"author": "Samuel Jun",
"license": "ISC",
"bugs": {
"url": "https://github.com/samueljun/tomato-clock/issues"
},
"homepage": "https://github.com/samueljun/tomato-clock#readme",
"dependencies": {
"bootstrap": "^4.6.0",
"chart.js": "^2.9.4",
"core-js": "^3.16.4",
"daterangepicker": "^2.1.27",
"jquery": "^3.6.0",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"webextension-polyfill": "^0.8.0"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"archiver": "^5.3.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^6.4.1",
"css-loader": "^2.1.1",
"eslint": "^7.32.0",
"html-webpack-plugin": "^3.2.0",
"prettier": "2.2.1",
"style-loader": "^0.23.1",
"web-ext": "^6.3.0",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12"
}
}