This repository has been archived by the owner on May 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
executable file
·75 lines (75 loc) · 2.53 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
{
"name": "text-to-image",
"version": "1.0.0",
"description": "",
"main": "index.js",
"homepage": "https://fxnoob.github.io/chrome-extension-boilerplate",
"scripts": {
"build:tailwind": "tailwindcss build src/styles/style.css -o dist/style.css",
"watch:tailwind": "chokidar 'src/styles/*.css' -c 'yarn build:tailwind'",
"prestart": "yarn build:tailwind",
"prebuild": "yarn rm && yarn build:tailwind",
"rm": "rm -rf dist/",
"start": "webpack-dev-server --config ./webpack.config.js --mode development",
"dev": "webpack --watch --progress --colors --config webpack.config.js --mode=development",
"build": "webpack --progress --colors --config webpack.config.js --mode=production",
"jsdoc": "jsdoc src -r",
"deploy_jsdoc": "yarn jsdoc && gh-pages -d out",
"prettier_check_src": "prettier --check src/**/*.{js,jsx}",
"prettier_check_popup": "prettier --check src/**/*.{js,jsx}",
"prettier_check_option": "prettier --check src/**/*.{js,jsx}",
"prettier_check_content": "prettier --check src/**/*.{js,jsx}",
"test": "yarn build"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-syntax-class-properties": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^5.0.4",
"css-loader": "^4.3.0",
"dotenv": "^8.2.0",
"file-loader": "^4.2.0",
"gh-pages": "^2.1.1",
"husky": "^3.0.9",
"image-webpack-loader": "^5.0.0",
"jsdoc": "^3.6.3",
"prettier": "1.18.2",
"pretty-quick": "^2.0.0",
"react-hot-loader": "^4.12.10",
"style-loader": "^1.2.1",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2"
},
"dependencies": {
"@babel/polyfill": "^7.4.4",
"@babel/runtime": "^7.5.5",
"@material-ui/core": "^4.3.3",
"@material-ui/icons": "^4.2.1",
"@tailwindcss/ui": "^0.5.0",
"lottie-react-web": "^2.1.4",
"pdfjs-dist": "^2.5.207",
"query-string": "^6.10.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-dropzone": "^11.2.0",
"react-frame-component": "^4.1.3",
"react-router-dom": "^5.2.0",
"react-share": "^4.3.0",
"tailwindcss": "^1.8.3",
"tesseract.js": "^2.1.3"
}
}