-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.27 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
{
"name": "base64-preview",
"version": "0.0.1",
"description": "Preview images with a base64 string",
"main": "index.js",
"scripts": {
"clean-build": "rm -rf ./public/index.js",
"clean-deploy": "rm -rf ./public/README.md",
"clean": "npm run clean-build && npm run clean-deploy",
"start": "webpack-dev-server",
"build": "webpack -p --mode production",
"predeploy": "cp ./README.md ./public && npm run build",
"deploy": "gh-pages -d public",
"postdeploy": "npm run clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jlozovei/base64-preview.git"
},
"author": "Julio Lozovei <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jlozovei/base64-preview/issues"
},
"homepage": "https://github.com/jlozovei/base64-preview#readme",
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"babel-loader": "^8.0.6",
"css-loader": "^3.4.2",
"dotenv-webpack": "^1.7.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"gh-pages": "^2.2.0",
"style-loader": "^1.1.3",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1"
},
"dependencies": {}
}