-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.22 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "offie-chrome-extension-frontend",
"version": "0.0.1",
"description": "Frontend to the Offie Chrome Extension",
"private": true,
"scripts": {
"test": "npx jest",
"build": "rm -rf prod-build/ && webpack --mode=production --env production",
"start": "webpack --watch --mode=development --env development",
"prettier": "prettier 'src/**/*.{ts,tsx}'",
"clean": "rm -rf prod-build/ node_modules",
"prettier:fix": "prettier --write 'src/**/*.{ts,tsx}'",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"lint:fix": "eslint --fix 'src/**/*.{ts,tsx}'"
},
"devDependencies": {
"@aws-sdk/client-comprehend": "^3.31.0",
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"@hot-loader/react-dom": "^17.0.0-rc.2",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.2.1",
"@types/chrome": "^0.0.158",
"@types/jest": "^26.0.24",
"@types/mixpanel-browser": "^2.35.7",
"@types/node": "^16.4.13",
"@types/qs": "^6.9.7",
"@types/react": "^16.9.53",
"@types/react-dom": "^16.9.8",
"@types/url-parse": "^1.4.4",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"babel-loader": "^8.1.0",
"copy-webpack-plugin": "^6.2.1",
"css-loader": "^5.0.0",
"dotenv-webpack": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-airbnb-typescript-prettier": "^4.2.0",
"eslint-import-resolver-typescript": "^2.5.0",
"file-loader": "^6.1.1",
"jest": "^27.2.0",
"prettier": "^2.3.2",
"react-hot-loader": "^4.13.0",
"style-loader": "^2.0.0",
"ts-jest": "^27.0.5",
"ts-loader": "^8.0.5",
"ts-node": "^10.2.1",
"tslint": "^6.1.3",
"typescript": "^4.1.2",
"url-loader": "^4.1.1",
"webpack": "^5.1.3",
"webpack-cli": "^4.0.0",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@fontsource/montserrat": "^4.5.1",
"@material-ui/core": "^4.12.3",
"@mui/icons-material": "^5.0.1",
"@mui/material": "^5.0.1",
"@mui/system": "^5.0.2",
"axios": "^0.23.0",
"mixpanel-browser": "^2.41.0",
"qs": "^6.10.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-intersection-observer": "^8.32.1",
"rollbar": "^2.24.0",
"web-vitals": "^2.1.0"
},
"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": "yarn lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"npx prettier --write 'src/**/*.{ts,tsx}'",
"npx eslint --fix 'src/**/*.{ts,tsx}",
"git add"
]
}
}