-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.71 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
{
"name": "task-list",
"version": "1.0.0",
"description": "Task list extension for Chromium and Firefox browsers",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"hot": "cross-env NODE_ENV=development webpack-dev-server --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"start:firefox": "web-ext run --source-dir ./src/",
"start:chrome": "web-ext run --source-dir ./src/ --target chromium",
"build": "npm run production && web-ext --config=web-ext-config.js --artifacts-dir ./dist/ build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emilsrits/task-list.git"
},
"keywords": [],
"author": "",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/emilsrits/task-list/issues"
},
"homepage": "https://github.com/emilsrits/task-list#readme",
"devDependencies": {
"cross-env": "^5.2.1",
"laravel-mix": "^5.0.1",
"normalize.css": "^8.0.1",
"resolve-url-loader": "^3.1.2",
"sass": "^1.26.11",
"sass-loader": "^7.3.1",
"web-ext": "^6.1.0"
},
"dependencies": {
"idb": "^4.0.4",
"vue": "^2.6.12",
"vue-i18n": "^8.24.3",
"vue-template-compiler": "^2.6.12",
"vuedraggable": "^2.24.1",
"vuex": "^3.5.1"
}
}