-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.8 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
{
"name": "airplaneTracker",
"version": "1.0.0",
"private": true,
"main": "src/index.jsx",
"scripts": {
"start": "open-cli http://localhost:3000 && npx webpack serve --mode=development",
"build": "NODE_ENV=production npx webpack build --mode=production",
"lint": "eslint . --ext .js --ext .jsx --ignore-path .gitignore",
"test": "jest",
"prepare": "husky install"
},
"author": "Gordon",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"@testing-library/jest-dom": "^6.1.2",
"@testing-library/react": "^14.0.0",
"autoprefixer": "^10.4.14",
"babel-loader": "^9.1.3",
"css-loader": "^6.8.1",
"eslint": "^8.45.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"html-webpack-plugin": "^5.5.3",
"husky": "^8.0.3",
"jest": "^29.6.4",
"lint-staged": "^13.2.3",
"open-cli": "^7.2.0",
"postcss": "^8.4.26",
"postcss-loader": "^7.3.3",
"prettier": "3.0.0",
"prettier-plugin-tailwindcss": "^0.6.9",
"style-loader": "^3.3.3",
"tailwindcss": "^3.3.3",
"url-loader": "^4.1.1",
"webpack": "^5.88.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"@jest/globals": "^29.6.4",
"@react-google-maps/api": "^2.20.3",
"@types/styled-components": "^5.1.26",
"classnames": "^2.3.2",
"jest-environment-jsdom": "^29.6.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^6.0.4",
"dotenv-webpack": "^8.1.0"
},
"lint-staged": {
"*.{js,jsx}": "eslint --fix"
}
}