-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
60 lines (60 loc) · 1.3 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
{
"name": "russian-bank",
"version": "1.0.0",
"description": "a card playing game",
"main": "webpack.config.js",
"repository": {
"type": "git",
"url": "https://github.com/RheaMars/russian-bank"
},
"scripts": {
"test": "echo \"Error: no test specified\""
},
"author": "",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"css-loader": "^5.1.1",
"eslint": "^5.0.1",
"eslint-loader": "^2.0.0",
"style-loader": "^0.13.1",
"webpack": "^5.24.2",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"enumify": "^1.0.4",
"i18next": "^4.2.0",
"jquery": "^3.5.1",
"jquery-i18next": "^1.2.0",
"jquery-ui": "^1.13.2",
"jquery-ui-touch-punch": "^0.2.3",
"kute.js": "^1.5.98",
"noty": "^2.4.0",
"sweetalert2": "^6.6.9",
"tooltipster": "^4.2.6"
},
"eslintConfig": {
"extends": "eslint:recommended",
"env": {
"es6": true,
"browser": true,
"node": true
},
"parser": "babel-eslint",
"parserOptions": {
"sourceType": "module"
},
"rules": {
"semi": [
2,
"always"
],
"no-console": 1,
"no-unused-vars": 1
}
}
}