-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.67 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
{
"name": "telescope-chrome-extension",
"version": "1.1.0",
"description": "Glassdoor chrome extension",
"main": "index.js",
"scripts": {
"start:dev": "NODE_ENV=development node_modules/.bin/webpack --config webpack/development.config.js",
"build:prod": "NODE_ENV=production node_modules/.bin/webpack --config webpack/production.config.js",
"clear-cache": "rm -rf ./node_modules/.cache/hard-source",
"clear-everything": "npm run clear-cache && ./node_modules/.bin/rimraf ./node_modules",
"codecov": "codecov",
"fresh-start": "npm run clear-everything && npm install",
"lint": "./node_modules/.bin/eslint .",
"semantic-release": "semantic-release",
"test": "./node_modules/.bin/jest --coverage --passWithNoTests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jaebradley/telescope-chrome-extension.git"
},
"keywords": [
"Glassdoor"
],
"author": "jae.b.bradley@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/jaebradley/telescope-chrome-extension/issues"
},
"homepage": "https://github.com/jaebradley/telescope-chrome-extension#readme",
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@material-ui/styles": "^4.10.0",
"axios": "^0.19.2",
"classnames": "^2.2.6",
"lodash-es": "^4.17.15",
"prop-types": "^15.7.2",
"query-string": "^6.13.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"use-debounce": "^3.4.3"
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^26.0.1",
"babel-loader": "^8.1.0",
"bufferutil": "^4.0.1",
"canvas": "^2.6.1",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.0.2",
"css-loader": "^3.6.0",
"dotenv-webpack": "^1.8.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^2.5.1",
"file-loader": "^6.0.0",
"hard-source-webpack-plugin": "^0.13.1",
"husky": "^4.2.5",
"image-webpack-loader": "^6.0.0",
"jest": "^26.0.1",
"style-loader": "^1.2.1",
"url-loader": "^4.1.0",
"utf-8-validate": "^5.0.2",
"webpack": "^4.43.0",
"webpack-build-notifier": "^2.0.1",
"webpack-chrome-extension-reloader": "^1.3.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2",
"write-file-webpack-plugin": "^4.5.1"
}
}