-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.47 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
{
"name": "toread",
"version": "1.1.0",
"description": "ToRead helps readers and learners to organize their material and thoughts to a seamless space.",
"private": true,
"scripts": {
"build": "webpack build --node-env=production --config webpack.common.js",
"dev": "webpack serve --node-env=development --config webpack.common.js",
"lint": "eslint --cache --fix --ext .js,.ts,.vue src functions",
"lint:css": "stylelint src/**/*.{css,vue} --cache --fix",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --cache --fix",
"*.{css,vue}": "stylelint --cache --fix",
"*.{js,ts,css,md}": "prettier --write"
},
"repository": {
"type": "git",
"url": "https://gitlab.com/thanos.valimitis/to-read.git"
},
"author": "Thanos Valimitis",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/thanos.valimitis/todolearn/issues"
},
"homepage": "https://gitlab.com/thanos.valimitis/todolearn#readme",
"devDependencies": {
"@babel/core": "7.17.9",
"@babel/preset-env": "7.16.11",
"@commitlint/cli": "16.2.3",
"@commitlint/config-conventional": "16.2.1",
"@types/file-saver": "2.0.5",
"@types/webpack-env": "1.16.3",
"@typescript-eslint/eslint-plugin": "5.19.0",
"@typescript-eslint/parser": "5.19.0",
"@vue/compiler-sfc": "3.2.32",
"autoprefixer": "10.4.4",
"babel-loader": "8.2.4",
"css-loader": "6.7.1",
"css-minimizer-webpack-plugin": "3.4.1",
"eslint": "8.13.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-vue": "8.6.0",
"eslint-webpack-plugin": "3.1.1",
"fork-ts-checker-webpack-plugin": "7.2.5",
"html-webpack-plugin": "5.5.0",
"husky": "7.0.4",
"lint-staged": "12.3.7",
"mini-css-extract-plugin": "2.6.0",
"postcss": "8.4.12",
"postcss-html": "1.3.1",
"postcss-loader": "6.2.1",
"prettier": "2.6.2",
"puppeteer": "10.4.0",
"style-loader": "3.3.1",
"stylelint": "14.6.1",
"stylelint-config-prettier": "9.0.3",
"stylelint-config-standard": "25.0.0",
"svg-spritemap-webpack-plugin": "4.4.0",
"tailwindcss": "3.0.24",
"ts-loader": "9.2.8",
"typescript": "4.6.3",
"vue-loader": "17.0.0",
"webpack": "5.72.0",
"webpack-cli": "4.9.2",
"webpack-dev-server": "4.8.1",
"webpack-merge": "5.8.0"
},
"dependencies": {
"chrome-aws-lambda": "10.1.0",
"core-js": "3.21.1",
"file-saver": "2.0.5",
"puppeteer-core": "10.4.0",
"vue": "3.2.32",
"vuex": "4.0.2"
}
}