-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·84 lines (84 loc) · 2.14 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
{
"name": "react-widgets",
"version": "2.0.0",
"description": "",
"main": "index.js",
"engines": {
"npm": "7.13.0",
"node": "16.2.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"serve:dev": "webpack serve --mode development",
"serve": "webpack serve --mode production",
"build": "webpack --mode production",
"start": "npm run serve:dev",
"postinstall": "npm run serve:dev",
"lint": "eslint --ext .js,.jsx src/",
"lint:fix": "npm run lint -- --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@google-cloud/pubsub": "^2.12.0",
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"autoprefixer": "^8.6.5",
"clsx": "^1.1.1",
"google-maps-react": "^2.0.6",
"prop-types": "^15.7.2",
"react": "^16.14.0",
"react-analog-clock": "^2.1.0",
"react-dom": "^16.14.0",
"uuid": "^3.4.0"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@babel/preset-react": "^7.13.13",
"@types/googlemaps": "^3.43.3",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"css-loader": "^5.2.4",
"eslint": "^7.27.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"html-webpack-plugin": "^5.3.1",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"mini-css-extract-plugin": "^1.6.0",
"optimize-css-assets-webpack-plugin": "^6.0.0",
"postcss": "^8.2.15",
"postcss-loader": "^5.3.0",
"postcss-preset-env": "^5.3.0",
"webpack": "^5.37.0",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.(js|jsx)": [
"npm run --silent lint:fix"
]
}
}