-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.84 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
94
95
96
{
"name": "v-stay-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "node server.js",
"build": "next build",
"start": "NODE_ENV=production node server.js",
"analyze": "ANALYZE=true next build",
"up": "docker-compose up -d",
"down": "docker-compose down",
"rebuild": "docker-compose up -d --build",
"commit": "git add -A && git commit -m",
"log": "docker logs knowllipop_frontend",
"into": "docker exec -it knowllipop_frontend /bin/sh",
"eslint-check": "eslint --print-config pages/index.jsx | eslint-config-prettier-check",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"merge:production": "git checkout production && git pull && git merge master && git push && git checkout master"
},
"dependencies": {
"@mapbox/mapbox-gl-directions": "^4.1.0",
"@next/bundle-analyzer": "^10.0.1",
"babel-plugin-transform-imports": "^2.0.0",
"eslint-plugin-import": "^2.22.1",
"express": "^4.17.1",
"file-loader": "^6.2.0",
"firebase": "^7.24.0",
"fs": "0.0.1-security",
"gifsicle": "^3.0.4",
"helmet": "^4.1.1",
"imagemin-gifsicle": "^7.0.0",
"imagemin-mozjpeg": "^6.0.0",
"imagemin-optipng": "^8.0.0",
"imagemin-svgo": "^8.0.0",
"js-cookie": "^2.2.1",
"mapbox-gl": "^1.12.0",
"next": "^9.3.2",
"next-compose-plugins": "^2.2.0",
"next-cookies": "^2.0.3",
"next-i18next": "^4.3.0",
"next-optimized-images": "^2.5.4",
"next-page-transitions": "^1.0.0-beta.2",
"next-seo": "^4.4.0",
"path": "^0.12.7",
"react": "16.13.1",
"react-bootstrap": "^1.3.0",
"react-cropper": "^1.3.0",
"react-datepicker": "^3.3.0",
"react-dom": "16.13.1",
"react-feather": "^2.0.8",
"react-firebase-hooks": "^2.2.0",
"react-map-gl": "^5.2.9",
"react-map-gl-directions": "^1.0.4",
"react-mapbox-gl-geocoder": "^1.1.0",
"sass": "^1.27.0",
"svg-sprite-loader": "^5.0.0",
"swr": "^0.1.18",
"unfetch": "^4.2.0",
"webp-loader": "^0.6.0",
"webpack-cli": "^4.0.0",
"xmlhttprequest": "^1.8.0"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"babel-eslint": "^10.1.0",
"commitlint": "^11.0.0",
"eslint": "^7.10.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.2",
"gulp-imagemin": "^7.1.0",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2"
},
"lint-staged": {
"**/*.(js|jsx)": [
"eslint --fix"
],
"**/*.(json|css|md)": [
"prettier --write"
]
},
"eslintIgnore": [
"build/**",
"packages/**"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}