-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.48 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
{
"name": "@csssr/csssr.images",
"version": "1.8.0",
"description": "Utilities for Webpack and React to simplify images workflow",
"main": "dist/index.js",
"types": "dist",
"engines": {
"node": ">= 11.10.1"
},
"scripts": {
"test": "jest",
"lint": "eslint --fix ./src ./example",
"dev": "webpack --config example/webpack.config.ts && http-server -p 8081 example",
"build": "tsc --declaration true",
"prepare": "npm run build",
"clean": "rm -rf dist",
"prebuild": "npm run clean"
},
"keywords": [
"webpack",
"webpack-loader"
],
"license": "MIT",
"devDependencies": {
"@types/jest": "^25.2.3",
"@types/loader-utils": "^1.1.3",
"@types/node": "^14.0.5",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/webpack": "^4.41.13",
"@types/webpack-env": "^1.15.2",
"@typescript-eslint/eslint-plugin": "^3.0.1",
"@typescript-eslint/parser": "^3.0.1",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"file-loader": "^6.0.0",
"http-server": "^0.12.3",
"jest": "^26.0.1",
"loader-utils": "^2.0.0",
"prettier": "^2.0.5",
"ts-jest": "^26.0.0",
"ts-loader": "^7.0.5",
"ts-node": "^8.10.1",
"typescript": "^3.9.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"imgproxy": "^0.1.2",
"react": "^16.13.1",
"react-dom": "^16.13.1"
}
}