-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 2 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": "quickscope",
"description": "A simple but powerful search bar for your new tab.",
"version": "0.0.3",
"author": "Benj Ledesma <benj.ledesma@gmail.com>",
"scripts": {
"dev:chrome": "webpack --config ./webpack/chrome.js",
"dev:firefox": "webpack --config ./webpack/firefox.js",
"dev": "concurrently 'yarn dev:chrome' 'yarn dev:firefox'",
"build:chrome": "cross-env NODE_ENV=production webpack --config ./webpack/chrome.js",
"build:firefox": "cross-env NODE_ENV=production webpack --config ./webpack/firefox.js",
"build": "yarn build:chrome && yarn build:firefox"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@babel/preset-react": "^7.16.7",
"@hot-loader/react-dom": "^17.0.1",
"@types/chrome": "^0.0.178",
"@types/js-yaml": "^4.0.5",
"@types/lodash": "^4.14.178",
"@types/papaparse": "^5.3.2",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"autoprefixer": "^10.4.2",
"babel-loader": "^8.2.3",
"concurrently": "^7.0.0",
"copy-webpack-plugin": "^10.2.0",
"cross-env": "^7.0.3",
"css-loader": "^6.5.1",
"postcss": "^8.4.5",
"postcss-loader": "^6.2.1",
"style-loader": "^3.3.1",
"tailwindcss": "^3.0.18",
"ts-loader": "^9.2.6",
"typescript": "^4.5.4",
"url-loader": "^4.1.1",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.2"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.17",
"@uiw/react-textarea-code-editor": "^1.4.15",
"axios": "^0.24.0",
"fzf": "^0.5.1",
"highlight.js": "^11.4.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"papaparse": "^5.3.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hot-loader": "^4.13.0",
"react-router-dom": "^6.2.1",
"react-simple-code-editor": "^0.11.0",
"yup": "^0.32.11",
"zustand": "^3.6.9"
}
}