-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
48 lines (48 loc) · 1.21 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
{
"name": "reprohack_hub",
"version": "0.1.0",
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.4",
"@popperjs/core": "^2.9.2",
"@yaireo/tagify": "^4.3.1",
"bootstrap": "4.5.3",
"bootstrap-icons": "^1.5.0",
"jquery": "3.5.1",
"leaflet": "^1.7.1",
"leaflet.awesome-markers": "2.0.5"
},
"devDependencies": {
"autoprefixer": "^9.4.7",
"browser-sync": "^2.26.13",
"cssnano": "^4.1.10",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-imagemin": "^7.1.0",
"gulp-npm-copy-deps": "^1.0.2",
"gulp-npm-files": "^0.1.3",
"gulp-plumber": "^1.2.1",
"gulp-postcss": "^9.0.0",
"gulp-rename": "^1.2.2",
"gulp-sass": "^4.1.0",
"gulp-uglify-es": "^2.0.0",
"npm-run-all": "^4.1.5",
"pixrem": "^5.0.0",
"postcss": "^8.3.7"
},
"engines": {
"node": ">=8"
},
"browserslist": [
"last 2 versions"
],
"scripts": {
"serve:site": "./manage.py runserver",
"serve:assets": "gulp",
"serve": "run-p serve:site serve:assets",
"build:assets": "gulp build",
"build:static": "./manage.py collectstatic --noinput",
"build": "build:assets",
"test:pytest": "pytest",
"test": "run-s build:static test:pytest"
}
}