-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
75 lines (75 loc) · 2.57 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
{
"name": "baseplate",
"version": "2.0.0",
"author": "Based Online <[email protected]>",
"homepage": "https://basedonline.nl",
"private": true,
"repository": {
"type": "git",
"url": "git://github.com/levdbas/baseplate.git"
},
"scripts": {
"dev": "npm run development",
"development": "node resources/assets/build/tasks/build.dev",
"production": "node resources/assets/build/tasks/build.production",
"watch": "node resources/assets/build/tasks/watch",
"lint": "yarn run -s lint:scripts && npm run -s lint:styles",
"lint:styles": "stylelint \"assets/styles/**/*.scss\"",
"lint:scripts": "eslint assets/scripts assets/build"
},
"engines": {
"node": ">= 8.5.0"
},
"license": "GPL-3.0",
"devDependencies": {
"@babel/core": "^7.10",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.10",
"@prettier/plugin-php": "^0.14",
"babel-loader": "^8.1",
"browser-sync": "^2.26.7",
"browser-sync-webpack-plugin": "^2.2",
"chalk": "^4.1.0",
"clean-webpack-plugin": "^3.0",
"copy-webpack-plugin": "^6.0",
"css-loader": "^3.6",
"cssnano": "^4.1.10",
"eslint": "^7.2.0",
"eslint-plugin-import": "^2.21.2",
"file-loader": "^6.0",
"imagemin-gifsicle": "^7.0.0",
"imagemin-jpegtran": "^7.0.0",
"imagemin-optipng": "^8.0.0",
"imagemin-svgo": "^8.0.0",
"imagemin-webpack": "^5.1.1",
"mini-css-extract-plugin": "^0.9",
"node-sass": "^4.14",
"postcss-loader": "^3.0.0",
"prettier": "^2.0.5",
"prettier-plugin-twig-melody": "^0.4.6",
"prettier-stylelint": "^0.4.2",
"sass-loader": "^8.0.2",
"style-loader": "^1.2",
"stylelint": "^13.6",
"stylelint-config-prettier": "^8.0",
"stylelint-config-recess-order": "^2.0.4",
"stylelint-config-standard": "^20.0",
"stylelint-order": "^4.1",
"terser-webpack-plugin": "^3.0",
"url-loader": "^4.1",
"webpack": "^4.43",
"webpack-cli": "^3.3.12",
"webpack-dev-middleware": "^3.7.2",
"webpack-format-messages": "^2.0.6",
"webpack-hot-middleware": "^2.25.0",
"webpack-manifest-plugin": "^2.2.0",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"bootstrap": "^4.5.0",
"jquery": "^3.5",
"palette-webpack-plugin": "^1.0.0",
"popper.js": "^1.16",
"vanilla-lazyload": "16.1.0"
}
}