-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
90 lines (90 loc) · 2.27 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@tilde-nlp/website-translator",
"description": "Widget to integrate in to another website to translate it",
"version": "7.1.0",
"main": "dist/widget.js",
"directories": {
"doc": "docs",
"lib": "dist",
"example": "example"
},
"author": {
"name": "Tilde, SIA",
"url": "https://tilde.com"
},
"repository": {
"type": "git",
"url": "https://github.com/tilde-nlp/website-translator.git"
},
"keywords": [
"translate",
"translator",
"html",
"tilde",
"webpage",
"website"
],
"license": "Apache-2.0",
"scripts": {
"lint": "standardx --parser @typescript-eslint/parser --plugin @typescript-eslint/eslint-plugin **/*.ts",
"lint:fix": "standardx --parser @typescript-eslint/parser --plugin @typescript-eslint/eslint-plugin **/*.ts --fix",
"patch-version": "node auto_version_patch.js",
"build:prod": "webpack --mode production",
"build:dev": "webpack --mode development",
"start": "webpack serve --progress --mode development"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"css-loader": "^6.7.1",
"ifdef-loader": "^2.3.2",
"node-sass": "^7.0.1",
"sass-loader": "^12.6.0",
"standardx": "^7.0.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.8",
"typescript": "^4.6.2",
"url-loader": "^4.1.1",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"axios": "^0.25.0",
"core-js": "^3.21.1",
"rxjs": "^7.5.5"
},
"eslintConfig": {
"rules": {
"object-property-newline": [
"error",
{
"allowAllPropertiesOnSameLine": false
}
],
"no-var": "error",
"no-console": "error",
"brace-style": [
"error",
"stroustrup"
],
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "warn"
},
"globals": {
"EventListenerOrEventListenerObject": "readonly",
"MutationObserverInit": "readonly"
},
"env": {
"browser": true,
"node": true
}
},
"standardx": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint/eslint-plugin"
]
}
}