-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.03 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
{
"name": "@ohs/use-progressive-image",
"version": "2.0.1",
"description": "Progressive image loading for React",
"source": "./src/index.ts",
"exports": {
".": {
"import": "./dist/index.modern.js",
"require": "./dist/index.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.module.js",
"unpkg": "./dist/index.umd.js",
"scripts": {
"build": "microbundle --no-compress --tsconfig tsconfig.build.json",
"start": "microbundle watch --no-compress --format modern,cjs",
"next:start": "next start",
"next:build": "next build",
"next:build:start": "npm run next:build && npm run next:start",
"next:build:static": "next build && next out",
"next:dev": "next",
"cy:open": "cypress open",
"test": "cypress open-ct -b chrome",
"test1": "cypress open -b chrome",
"lint": "eslint --fix --ext .ts,.tsx src components pages",
"tsc": "tsc -p tsconfig.build.json",
"cy:run": "cypress run & cypress run-ct",
"cy:ci": "start-server-and-test next:build:start http://localhost:3000 cy:run"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"files": [
"/dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Dattaya/use-progressive-image.git"
},
"keywords": [
"react",
"progressive",
"image",
"loading",
"lqip"
],
"author": "Yaroslav Kiliba",
"license": "MIT",
"bugs": {
"url": "https://github.com/Dattaya/use-progressive-image/issues"
},
"homepage": "https://github.com/Dattaya/use-progressive-image#readme",
"devDependencies": {
"@cypress/react": "5.12.5",
"@cypress/webpack-dev-server": "1.8.4",
"@ohs/eslint-config": "1.1.0",
"@types/node": "16.18.63",
"@types/react": "17.0.47",
"babel-loader": "8.3.0",
"cypress": "9.7.0",
"eslint": "8.54.0",
"microbundle": "0.15.1",
"next": "11.1.4",
"react": "17.0.2",
"react-dom": "17.0.2",
"start-server-and-test": "1.15.4",
"typescript": "4.9.5"
},
"dependencies": {
"use-deep-compare": "^1.1.0"
}
}