-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
74 lines (74 loc) · 1.83 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
74
{
"name": "checkadblock",
"version": "3.1.1",
"releaseDate": "1700741315874",
"repository": "[email protected]:ymatuhin/checkadblock.git",
"author": "ymatuhin <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/lodash": "^4.14.149",
"@types/node": "^13.1.2",
"autoprefixer": "^9.7.3",
"http-server-ssl": "^0.0.7",
"lodash": "^4.17.15",
"node-fetch": "^2.6.1",
"npm-run-all": "^4.1.5",
"parcel-bundler": ">=1.10.3",
"parcel-plugin-interpolate-html": "^1.0.3",
"parcel-plugin-prerender": "^1.4.1",
"parcel-plugin-static-files-copy": "^2.2.1",
"parcel-plugin-svelte": "^4.0.5",
"postcss-load-config": "^2.1.0",
"postcss-modules": "^1.4.1",
"sass": "^1.52.3",
"svelte": "^3.16.7",
"svelte-preprocess": "^3.3.0",
"typescript": "^3.7.4"
},
"scripts": {
"start": "npm run dev",
"dev": "./dev.sh ru",
"dev:en": "./dev.sh en",
"build": "./build.sh",
"deploy": "./deploy.sh",
"convertHtmls": "node ./transformHtmlIcludes.js",
"postinstall": "node ./postinstall.js"
},
"dependencies": {
"@babel/polyfill": "^7.8.0",
"core-js": "^3.23.1",
"debug": "^4.1.1",
"effector": "^20.9.1",
"flat": "^5.0.0",
"loadjs": "^4.2.0",
"ms": "^2.1.3",
"normalizr": "^3.4.1",
"symbol-observable": "^4.0.0",
"whatwg-fetch": "^3.0.0"
},
"prerender": {
"routes": [
"/"
],
"rendererConfig": {
"renderAfterDocumentEvent": "prerender-trigger"
}
},
"staticFiles": {
"staticPath": [
{
"outDirPattern": "**",
"staticPath": "static"
},
{
"outDirPattern": "**/checkadblock.ru",
"staticPath": "static-ru"
},
{
"outDirPattern": "**/adblock-tester.com",
"staticPath": "static-en"
}
]
}
}