-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
executable file
·73 lines (73 loc) · 2.14 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
{
"name": "ivfi",
"version": "1.2.2",
"description": "The image and video friendly indexer",
"main": "index.js",
"scripts": {
"clean": "rimraf ./dist ./packed",
"compile": "webpack --config webpack.config.js",
"compile:production": "webpack --config webpack.config.js --mode=production",
"compile:development": "webpack --config webpack.config.js --mode=development",
"transpile:tsc": "npx tsc",
"transpile:pack": "node --loader ts-node/esm transpile.ts",
"test:lint": "eslint ./src/core/**/*.ts && eslint ./src/*.ts && stylelint ./src/css/**/*.scss",
"test": "npm run test:lint && webpack --config webpack.config.js --mode=production"
},
"dependencies": {
"chalk": "^4.1.2",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"express": "^4.18.2",
"express-basic-auth": "^1.2.1",
"js-cookie": "^3.0.1",
"lodash": "^4.17.21",
"mime-types": "^2.1.35",
"pug": "^3.0.2",
"showdown": "^2.1.0",
"vanilla-swipe": "^2.4.1"
},
"devDependencies": {
"@types/compression": "^1.7.2",
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.14",
"@types/fs-extra": "^9.0.13",
"@types/lodash": "^4.14.191",
"@types/modernizr": "^3.5.3",
"@types/showdown": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^5.45.1",
"@typescript-eslint/parser": "^5.45.1",
"autoprefixer": "^10.4.13",
"css-loader": "^6.7.2",
"css-minimizer-webpack-plugin": "^4.2.2",
"fs-extra": "^11.1.0",
"mini-css-extract-plugin": "^2.7.1",
"postcss-loader": "^7.0.2",
"rimraf": "^3.0.2",
"sass": "^1.56.1",
"sass-loader": "^13.2.0",
"stylelint-config-standard-scss": "^6.1.0",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"webpack-cli": "^5.0.0"
},
"keywords": [
"indexer",
"directory",
"lister",
"gallery",
"browser",
"files",
"listing"
],
"author": "emy",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/sixem/ivfi-node.git"
},
"bugs": {
"url": "https://github.com/sixem/ivfi-node/issues"
},
"homepage": "https://ivfi.io/"
}