forked from okfde/froide
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
107 lines (107 loc) · 3.33 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
{
"name": "froide",
"version": "1.0.0",
"description": "Froide",
"main": "frontend/javascript/main.js",
"files": [
"frontend/",
".eslintrc.js"
],
"directories": {
"doc": "docs"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint frontend --ext .js,.ts,.vue",
"dev": "webpack --watch --mode development",
"serve": "NODE_ENV=development webpack serve --progress --mode development --hot --host 0.0.0.0",
"build": "NODE_ENV=production webpack --mode production",
"favicon": "real-favicon generate froide/static/img/logo/favicon.json favicon-result.json froide/static/img/logo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/okfde/froide.git"
},
"author": "Stefan Wehrmeyer",
"license": "ISC",
"bugs": {
"url": "https://github.com/okfde/froide/issues"
},
"homepage": "https://github.com/okfde/froide#readme",
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@types/lodash.throttle": "^4.1.6",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"autoprefixer": "^10.3.1",
"babel-loader": "^8.0.4",
"bootstrap.native-loader": "^2.0.0",
"cli-real-favicon": "0.0.8",
"copy-webpack-plugin": "^9.0.1",
"css-hot-loader": "^1.3.9",
"css-loader": "^6.2.0",
"css-minimizer-webpack-plugin": "^3.0.2",
"eslint": "^7.31.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-html": "^6.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.0.0",
"eslint-plugin-vue": "^7.14.0",
"file-loader": "^6.2.0",
"mini-css-extract-plugin": "^2.1.0",
"postcss": "^8.1.0",
"postcss-loader": "^6.1.1",
"prettier": "^2.6.1",
"prettier-config-standard": "^5.0.0",
"resolve-url-loader": "^4.0.0",
"sass": "1.32.13",
"sass-loader": "^12.1.0",
"style-loader": "^3.2.1",
"ts-loader": "^9.2.4",
"tslint": "^6.1.3",
"typescript": "^4.3.5",
"url-loader": "^4.1.1",
"vue-loader": "^15.1.0",
"vue-style-loader": "^4.1.0",
"vue-template-compiler": "^2.5.16",
"webpack": "^5.46.0",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.7.2",
"webpack-dev-middleware": "^5.0.0",
"webpack-dev-server": "^3.11.2",
"webpack-livereload-plugin": "^3.0.1",
"worker-loader": "^3.0.8",
"write-file-webpack-plugin": "^4.2.0"
},
"dependencies": {
"@okfde/filingcabinet": "^0.0.1",
"@uppy/core": "^1.5.1",
"@uppy/dashboard": "^1.4.1",
"@uppy/tus": "^1.4.2",
"bootstrap": "^4.3.1",
"bootstrap.native": "^2.0.27",
"choices.js": "^9.0.1",
"driver.js": "^0.9.8",
"es6-promise": "^4.2.8",
"exif-js": "^2.3.0",
"font-awesome": "^4.7.0",
"js-base64": "3.6.1",
"leaflet": "^1.5.1",
"leaflet.icon.glyph": "^0.3.0",
"lodash.debounce": "^4.0.8",
"lodash.range": "^3.2.0",
"lodash.sortby": "^4.7.0",
"pdfjs-dist": "==2.9.359",
"string.prototype.repeat": "^1.0.0",
"vue": "^2.6.10",
"vue-lazyload": "^1.3.3",
"vue-slide-up-down": "^2.0.1",
"vuedraggable": "^2.23.2",
"vuex": "^3.1.1"
}
}