-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.22 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.22 KB
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
97
98
99
100
101
102
103
{
"name": "get-a-trip",
"version": "1.0.0",
"description": "A demo of the tour-buying service",
"main": "src/index.tsx",
"scripts": {
"start": "webpack serve --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"lint": "eslint .",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/solarlime/get-a-trip.git"
},
"type": "module",
"author": "solarlime",
"license": "ISC",
"bugs": {
"url": "https://github.com/solarlime/get-a-trip/issues"
},
"homepage": "https://get-a-trip.solarlime.dev",
"packageManager": "yarn@4.3.1",
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"@fullhuman/postcss-purgecss": "^6.0.0",
"@jest/globals": "^29.7.0",
"@svgr/webpack": "^8.1.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/babel__core": "^7.20.5",
"@types/babel__preset-env": "^7.9.7",
"@types/eslint": "^8.56.11",
"@types/identity-obj-proxy": "^3.0.2",
"@types/react": "^18.3.4",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^9.0.8",
"@types/validator": "^13.12.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"bulma": "^1.0.2",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"dotenv-webpack": "^8.1.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.11",
"favicons": "^7.2.0",
"favicons-webpack-plugin": "^6.0.1",
"glob": "^10.4.5",
"html-loader": "^5.1.0",
"html-webpack-plugin": "^5.6.0",
"identity-obj-proxy": "^3.0.0",
"incstr": "^1.2.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fixed-jsdom": "^0.0.9",
"mini-css-extract-plugin": "^2.9.1",
"msw": "^2.6.6",
"postcss": "^8.4.41",
"postcss-loader": "^8.1.1",
"sass": "^1.77.8",
"sass-loader": "^14.2.1",
"terser-webpack-plugin": "^5.3.10",
"ts-loader": "^9.5.1",
"typescript": "^5.5.4",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.2.2",
"webpack-merge": "^5.10.0"
},
"dependencies": {
"@juggle/resize-observer": "^3.4.0",
"@react-hook/resize-observer": "^2.0.2",
"core-js": "^3.38.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.30.3",
"typograf": "^7.4.1",
"unsplash-js": "^7.0.19",
"uuid": "^10.0.0",
"validator": "^13.15.23",
"zustand": "^4.5.5"
}
}