-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.75 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
{
"name": "@csssr/csssr.images",
"version": "3.3.3",
"description": "Utilities for Webpack and React to simplify images workflow",
"main": "dist/index.js",
"types": "dist",
"engines": {
"node": ">= 11.10.1"
},
"scripts": {
"test": "jest --watch",
"lint": "eslint --fix ./src ./example",
"dev": "webpack --config example/webpack.config.ts && http-server -p 8081 example",
"build-example": "webpack --config example/webpack.config.ts",
"build": "tsc --declaration true",
"prepare": "npm run build",
"clean": "rm -rf dist",
"prebuild": "npm run clean"
},
"keywords": [
"webpack",
"webpack-loader"
],
"license": "MIT",
"devDependencies": {
"@types/ip": "^1.1.0",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.37",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@types/webpack": "^5.28.0",
"@types/webpack-env": "^1.16.0",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.23.1",
"file-loader": "^6.2.0",
"http-server": "^0.12.3",
"ip": "^1.1.5",
"jest": "^26.6.3",
"loader-utils": "^2.0.0",
"prettier": "^2.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"ts-jest": "^26.5.4",
"ts-loader": "^8.1.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.4",
"webpack": "^5.30.0",
"webpack-cli": "^4.6.0"
},
"dependencies": {
"imgproxy": "^0.1.2",
"schema-utils": "^3.0.0"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"resolutions": {
"node-notifier": ">=8.0.1",
"ecstatic": ">=4.1.3"
}
}