-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
93 lines (93 loc) · 2.78 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
{
"name": "starterpack",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "gulp",
"build": "gulp --production",
"postpost": "npm run report-js && npm run report-css && npm run report-lh",
"start-admin": "gulp --mod admin",
"build-admin": "gulp --production --mod admin",
"serve": "source .env && php -S 127.0.0.1:8000 -t www/",
"lint-js": "eslint dev/**/*.js --fix",
"lint-css": "stylelint dev/**/*.css app/**/*.css --fix",
"report-css": "stylelint dev/**/*.css > www/dist/report/stylelint.txt || exit 0",
"report-js": "eslint dev/**/*.js -f compact -o www/dist/report/eslint.txt",
"report-lh": "lighthouse http://127.0.0.1:8000/ --output html --output-path www/dist/report/lighthouse.html",
"test": "echo \"Error: no test specified\" && exit 1",
"apigen": "apidoc -i app/modules/Api/presenters/ -o www/dist/apidoc/"
},
"repository": {
"type": "git"
},
"keywords": [],
"author": "Matronator",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/register": "^7.21.0",
"apidoc": "^1.0.0",
"autoprefixer": "^10.4.14",
"babelify": "^10.0.0",
"browser-sync": "^3.0.0",
"browserify": "^17.0.0",
"cssnano": "^7.0.0",
"del": "^8.0.0",
"dotenv": "^16.0.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"glob": "^11.0.0",
"gulp": "^5.0.0",
"gulp-cache": "^1.1.3",
"gulp-imagemin": "^9.0.0",
"gulp-noop": "^1.0.1",
"gulp-postcss": "^10.0.0",
"gulp-rev": "^11.0.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-svg-sprite": "^2.0.0",
"gulp-tap": "^2.0.0",
"gulp-uglify-es": "^3.0.0",
"lighthouse": "^12.0.0",
"loose-envify": "^1.4.0",
"postcss": "^8.4.21",
"postcss-custom-media": "^11.0.0",
"postcss-import": "^16.0.0",
"postcss-nested": "^7.0.0",
"prettier": "^3.0.0",
"stylelint": "^16.0.0",
"stylelint-config-prettier": "^9.0.0",
"stylelint-prettier": "^5.0.0",
"tailwindcss": "^3.0.0",
"vinyl-buffer": "^1.0.1",
"yargs": "^17.0.0"
},
"browserslist": [
"last 2 versions",
"ie >= 11"
],
"prettier": {
"semi": false,
"include": [
"./prettierrc.json"
]
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"@ckeditor/ckeditor5-build-classic": "^44.0.0",
"@ckeditor/ckeditor5-ckfinder": "^44.0.0",
"@popperjs/core": "^2.11.7",
"axette": "^2.0.0",
"choices.js": "^11.0.0",
"clipboard-polyfill": "^4.0.0",
"core-js": "^3.29.1",
"flatpickr": "^4.6.13",
"lodash": "^4.17.21",
"nouislider": "^15.0.0",
"tui-image-editor": "^3.15.3",
"uikit": "^3.16.11"
}
}