-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.51 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
{
"name": "traveljournal",
"version": "2.0.0",
"description": "App for tracking visited cities and flights",
"main": "index.js",
"scripts": {
"start": "webpack serve",
"build": "webpack --mode production",
"build:demo": "yarn && webpack --mode production --env=demo",
"test": "jest"
},
"author": "Alexander Tsaplev <[email protected]>",
"license": "MIT",
"devDependencies": {
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.2.3",
"html-webpack-plugin": "^5.5.3",
"husky": ">=8.0.3",
"jest": "^29.6.2",
"jest-json-schema": "^6.1.0",
"lint-staged": ">=13",
"mini-css-extract-plugin": "^2.7.6",
"prettier": "3.0.1",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
},
"dependencies": {
"axios": "^1.4.0",
"sqlite3": "^5.1.6"
},
"keywords": [
"travel",
"map",
"flightradar",
"nomadmania",
"appintheair",
"flightdairy",
"tripadvisor",
"travbuddy"
],
"repository": {
"type": "git",
"url": "https://github.com/tsaplev/traveljournal"
},
"bugs": {
"url": "https://github.com/tsaplev/traveljournal/issues"
}
}