forked from woltapp/react-blurhash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.58 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
{
"name": "react-blurhash",
"version": "0.1.2",
"description": "Blurhash implementation for React",
"keywords": ["blurhash", "blur", "hash", "image", "react", "component"],
"license": "MIT",
"author": "nygardk",
"repository": {
"type": "git",
"url": "https://github.com/woltapp/react-blurhash"
},
"homepage": "https://blurha.sh",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"module": "es/index.js",
"scripts": {
"prepublishOnly": "npm run build",
"build": "npm run build:es && npm run build:lib",
"build:demo": "rm -rf ./docs && webpack -p --config webpack.demo.config.js",
"build:es": "rm -rf ./es && npm run ts -- --module es2015 --outDir ./es",
"build:lib": "rm -rf ./lib && npm run ts -- --module commonjs --outDir ./lib",
"demo": "webpack-dev-server --config webpack.demo.config.js --hot --progress",
"prettier": "prettier src/**/*.ts",
"prettier-fix": "npm run prettier -- --write",
"ts": "tsc",
"ts:watch": "npm run ts -- --noEmit --watch"
},
"peerDependencies": {
"blurhash": "^1.1.1"
},
"devDependencies": {
"@types/prop-types": "^15.7.1",
"@types/react": "^16.8.22",
"@types/react-dom": "^16.8.4",
"@types/styled-components": "^4.1.16",
"blurhash": "^1.1.2",
"html-webpack-plugin": "^3.2.0",
"prettier": "1.18.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-hot-loader": "^4.11.1",
"styled-components": "^4.3.2",
"ts-loader": "6.0.4",
"typescript": "3.5.2",
"webpack": "4.35.0",
"webpack-cli": "^3.3.5",
"webpack-dev-server": "3.7.2"
}
}