-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
63 lines (63 loc) · 1.98 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": "road-trips",
"version": "2.0.0",
"description": "A Travel Blog",
"private": true,
"scripts": {
"start": "webpack-dev-server --config webpack.dev.js",
"photos": "sips -Z 2500 dist/images/scotland/photos/* && sips -Z 600 dist/images/scotland/thumbs/*",
"build": "webpack --config webpack.prod.js",
"lint": "eslint src/",
"test": "npx playwright test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iwazaru/iceland-road-trip.git"
},
"author": "Clément Bourgoin <[email protected]> (http://nokto.net/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/iwazaru/iceland-road-trip/issues"
},
"homepage": "https://github.com/iwazaru/iceland-road-trip#readme",
"devDependencies": {
"@hot-loader/react-dom": "^16.8.6",
"@playwright/test": "^1.48.2",
"@types/node": "^22.9.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.1",
"clean-webpack-plugin": "^3.0.0",
"connect-history-api-fallback": "^1.5.0",
"eslint": "^6.7.2",
"eslint-plugin-react": "^7.8.2",
"html-webpack-plugin": "^3.2.0",
"koa-connect": "^2.0.1",
"sass-loader": "^8.0.0",
"sitemap-webpack-plugin": "^0.6.0",
"terser-webpack-plugin": "^4.1.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.25",
"@fortawesome/free-solid-svg-icons": "^5.1.0-11",
"@fortawesome/react-fontawesome": "^0.1.8",
"babel-preset-react": "^6.24.1",
"css-loader": "^3.4.0",
"google-map-react": "^1.1.5",
"history": "^4.10.1",
"prop-types": "^15.6.1",
"react": "^16.3.2",
"react-dom": "^16.12.0",
"react-helmet": "^5.2.0",
"react-hot-loader": "^4.12.16",
"react-router-dom": "^5.1.2",
"sass": "^1.74.1",
"slugify": "^1.3.6",
"style-loader": "^1.0.2"
}
}