forked from inker/draw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.77 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
91
92
93
94
{
"name": "draw",
"version": "1.0.2",
"description": "A Champions League draw simulator",
"keywords": [
"cl",
"draw",
"champions",
"league",
"seeding",
"football",
"uefa",
"fifa"
],
"homepage": "https://github.com/inker/draw#readme",
"bugs": {
"url": "https://github.com/inker/draw/issues"
},
"license": "GPLv3",
"author": "Anton",
"main": "index.html",
"repository": {
"type": "git",
"url": "git+https://github.com/inker/draw.git"
},
"scripts": {
"lint:js": "eslint --ext .ts,.tsx --max-warnings=0 src",
"lint:css": "stylelint './src/**/*.{ts,tsx}'",
"lint": "run-p -c \"lint:css -- {1}\" \"lint:js -- {1}\" --",
"build": "webpack --color --config webpack/webpack.config.js",
"start": "webpack serve --color --env dev --config webpack/webpack.config.js",
"test": "echo \"No test\""
},
"dependencies": {
"@draws/engine": "^0.1.8",
"async-manager-promise": "^0.0.5",
"bowser": "^2.11.0",
"date-fns": "^2.28.0",
"delay.js": "^2.0.1",
"dom-to-image": "^2.6.0",
"fast-delete": "^1.0.1",
"file-saver": "^2.0.5",
"flag-icons": "^6.1.1",
"history": "^5.3.0",
"html-tags": "^3.1.0",
"lodash": "^4.17.21",
"memoize-one": "^6.0.0",
"normalize.css": "^8.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-github-btn": "^1.2.2",
"react-helmet": "^6.1.0",
"react-router-dom": "6.0.0-beta.3",
"styled-components": "^5.3.5",
"tslib": "^2.3.1",
"unfocus": "^1.0.1"
},
"devDependencies": {
"@inker/eslint-config-typescript": "^10.2.0",
"@types/dom-to-image": "^2.6.4",
"@types/file-saver": "^2.0.5",
"@types/lodash": "^4.14.180",
"@types/react": "^17.0.43",
"@types/react-dom": "^17.0.14",
"@types/react-helmet": "^6.1.5",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.24",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^3.4.1",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.3.0",
"html-webpack-plugin": "^5.4.0",
"mini-css-extract-plugin": "^2.6.0",
"npm-run-all": "^4.1.5",
"style-loader": "^3.3.1",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-scss": "^3.21.0",
"terser-webpack-plugin": "^5.3.1",
"ts-loader": "^9.2.8",
"typescript": "^4.4.4",
"typescript-plugin-lodash": "^0.1.0",
"typescript-plugin-styled-components": "^2.0.0",
"webpack": "^5.70.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
}
}