forked from statikbe/craft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·80 lines (80 loc) · 2.66 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
{
"private": true,
"config": {
"test": "git change",
"path": {
"src": "tailoff",
"public": "public"
},
"proxy": "https://basecraft.local.statik.be"
},
"scripts": {
"dev": "webpack --env NODE_ENV=development --progress",
"watch": "webpack --env NODE_ENV=development --progress --watch",
"favicon": "webpack --config favicons.config.js --progress",
"favicon-site2": "webpack --config favicons.config.site2.js --progress",
"prod": "webpack --env NODE_ENV=production",
"start": "composer install && (yarn install && yarn run dev) && git config core.hooksPath .githooks && chmod +x .githooks/post-merge && node -e \"console.log('DONE! All ready to go!')\"",
"switch-site": "cp tailwind.config.site.js tailwind.config.js",
"switch-site2": "cp tailwind.config.site2.js tailwind.config.js"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.4",
"@tailwindcss/aspect-ratio": "^0.2.1",
"@types/glidejs": "^1.0.30",
"@types/googlemaps": "^3.43.3",
"autoprefixer": "^10.2.6",
"babel-loader": "^8.2.2",
"browser-sync": "^2.26.14",
"browser-sync-webpack-plugin": "^2.3.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^9.0.0",
"core-js": "^3.14.0",
"css-loader": "^5.2.6",
"css-minimizer-webpack-plugin": "^3.0.1",
"dotenv-webpack": "^7.0.3",
"eslint": "7.28.0",
"eslint-webpack-plugin": "^2.5.4",
"favicons": "^6.2.2",
"globby": "^11.0.3",
"html-webpack-plugin": "^5.3.1",
"imagemin-webpack-plugin": "^2.4.2",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^1.6.0",
"postcss": "^8.3.0",
"postcss-cli": "^8.3.1",
"postcss-custom-properties": "^11.0.0",
"postcss-import": "^14.0.2",
"postcss-loader": "^5.3.0",
"postcss-mixins": "^8.1.0",
"postcss-nested": "^5.0.5",
"promise-polyfill": "^8.2.0",
"purgecss-webpack-plugin": "^4.0.3",
"style-loader": "^2.0.0",
"svg-spritemap-webpack-plugin": "^4.0.3",
"tailwindcss": "^2.2.0-canary.16",
"tailwindcss-aspect-ratio": "^3.0.0",
"terser-webpack-plugin": "^5.1.3",
"tiny-lr": "^2.0.0",
"ts-loader": "^9.2.3",
"typescript": "4.2.3",
"webfonts-loader": "ariesjia/webfonts-loader",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2",
"wicg-inert": "^3.1.1"
},
"dependencies": {
"@glidejs/glide": "^3.4.1",
"@popperjs/core": "^2.9.2",
"flatpickr": "^4.6.9",
"lazysizes": "^5.3.2",
"leaflet": "^1.7.1",
"tippy.js": "^6.3.1",
"webpack-dev-middleware": "^5.0.0"
},
"optionalDependencies": {
"favicons-webpack-plugin": "^5.0.2"
}
}