-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.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
{
"name": "webext-chronos",
"version": "1.1.3",
"description": "A productive tab manager doubling as a website blocker. Let online work flow like time.",
"scripts": {
"prego": "webpack --config webpack.config.js",
"go": "web-ext run -s ./build",
"watch:webpack": "webpack --config webpack.config.js --watch",
"watch:firefox": "web-ext run -s ./build --verbose",
"prebuild": "cross-env NODE_ENV=production webpack --config webpack.config.js",
"build": "web-ext build -s ./build -a ./dist"
},
"main": "hello.js",
"keywords": [
"WebExtensions",
"productivity"
],
"author": "Kevin Mo <[email protected]>",
"license": "MIT",
"dependencies": {
"@types/lodash": "^4.14.106",
"lodash": "^4.17.10",
"moment": "^2.22.0",
"vue": "^2.5.16",
"vue-router": "^3.0.1",
"vuedraggable": "^2.16.0",
"vuex": "^3.0.1",
"web-ext": "^2.7.0",
"webextension-polyfill": "^0.3.0"
},
"devDependencies": {
"buble": "^0.19.3",
"buble-loader": "^0.5.0",
"copy-webpack-plugin": "^4.5.1",
"cross-env": "^5.1.4",
"css-loader": "^0.28.11",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.1.0",
"speed-measure-webpack-plugin": "^1.2.0",
"uglifyjs-webpack-plugin": "^1.2.4",
"vue-loader": "^15.0.0-beta.1",
"vue-style-loader": "^4.1.0",
"vue-template-compiler": "^2.5.16",
"web-ext-types": "kelseasy/web-ext-types",
"webpack": "^4.4.1",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4"
}
}