-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
executable file
·60 lines (60 loc) · 2.08 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
{
"contact": {
"name": "emy",
"mail": "[email protected]"
},
"name": "ivfi",
"version": "1.2.3",
"description": "The image and video friendly indexer",
"main": "./core/js/main.ts",
"type": "module",
"dependencies": {
"js-cookie": "^2.2.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.14.7",
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.18.6",
"@types/js-cookie": "^3.0.2",
"@types/modernizr": "^3.5.3",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"autoprefixer": "^10.4.8",
"css-loader": "^5.2.5",
"css-minimizer-webpack-plugin": "^3.0.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"mini-css-extract-plugin": "^1.6.0",
"moment": "^2.29.1",
"postcss-loader": "^7.0.1",
"sass": "^1.52.3",
"sass-loader": "^13.0.0",
"source-map-loader": "^4.0.0",
"stylelint-config-standard-scss": "^5.0.0",
"ts-loader": "^9.3.1",
"typescript": "^4.8.2",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
},
"scripts": {
"build": "webpack --config webpack.config.js --mode=production",
"build-dev": "webpack --config webpack.config.js --mode=development",
"build-dev-watch": "webpack --config webpack.config.js --mode=development --watch",
"make-standalone": "webpack --config webpack.config.js --mode=production && node ./scripts/make-standalone.js",
"docker-populate": "rm -rf ./docker/public ./build && webpack --config webpack.config.js --mode=production && mv ./build ./docker/public",
"lint": "eslint ./src/core/**/*.ts && stylelint ./src/css/**/*.scss",
"test": "npm run lint && npm run build && node ./scripts/make-standalone.js",
"pack-release": "bash ./scripts/pack-release.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sixem/ivfi-php.git",
"reference": "https://github.com/sixem/ivfi-php"
},
"author": "emy",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/sixem/ivfi-php/issues"
},
"homepage": "https://github.com/sixem/ivfi-php#readme"
}