-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.04 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
{
"name": "proxy-handler-for-reactivity",
"version": "1.0.0",
"description": "Proxy for reactive programming.",
"main": "src/ts/index.js",
"scripts": {
"dev": "node -r esm webpack/dev.js",
"build": "node -r esm webpack/prod.js",
"lint": "eslint ./src",
"all-tests": "jest",
"e2e-tests": "jest e2e/"
},
"author": {
"name": "Ikrom Murodov",
"email": "[email protected]",
"url": "https://github.com/Ikrom-Murodov"
},
"homepage": "https://github.com/Ikrom-Murodov/proxy",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-typescript": "^7.10.4",
"@types/expect-puppeteer": "^4.4.5",
"@types/jest": "^26.0.14",
"@types/jest-environment-puppeteer": "^4.4.0",
"@types/puppeteer": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"app-root-path": "^3.0.0",
"autoprefixer": "^10.0.1",
"babel-jest": "^26.3.0",
"babel-loader": "^8.1.0",
"chalk": "^4.0.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.0.3",
"css-loader": "^4.3.0",
"css-mqpacker": "^7.0.0",
"cssnano": "^4.1.10",
"eslint": "^7.1.0",
"eslint-config-airbnb-typescript": "^11.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^24.0.2",
"esm": "^3.2.25",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"image-webpack-loader": "^7.0.1",
"jest": "^26.4.2",
"jest-puppeteer": "^4.4.0",
"mini-css-extract-plugin": "^0.11.3",
"node-sass": "^4.14.1",
"postcss-loader": "^4.0.3",
"pug": "^3.0.0",
"pug-loader": "^2.4.0",
"puppeteer": "^5.4.1",
"sass-loader": "^10.0.2",
"source-map-loader": "^1.1.0",
"style-loader": "^1.2.1",
"tslib": "^2.0.1",
"typescript": "^4.0.3",
"webpack": "^4.43.0",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.1.4"
},
"dependencies": {
"@babel/polyfill": "^7.8.7",
"core-js": "3"
}
}