forked from inker/draw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.8 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
{
"name": "draw",
"version": "1.0.2",
"description": "A Champions League draw simulator",
"main": "index.html",
"dependencies": {
"@draws/engine": "^0.0.4",
"async-manager-promise": "^0.0.5",
"bowser": "^2.3.0",
"delay.js": "^1.0.2",
"fast-delete": "^1.0.1",
"fast-levenshtein": "^2.0.6",
"flag-icon-css": "^3.3.0",
"history": "^4.9.0",
"lodash": "^4.17.11",
"normalize.css": "^8.0.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-helmet": "6.0.0-beta",
"react-router-dom": "^5.0.0",
"shallowequal": "^1.1.0",
"styled-components": "4.2.0",
"timelimit": "^1.0.1",
"tslib": "^1.9.3"
},
"devDependencies": {
"@types/fast-levenshtein": "0.0.1",
"@types/lodash": "^4.14.123",
"@types/react": "^16.8.14",
"@types/react-dom": "^16.8.4",
"@types/react-helmet": "^5.0.8",
"@types/react-router-dom": "^4.3.2",
"@types/request-promise-native": "^1.0.16",
"@types/shallowequal": "^1.1.1",
"awesome-typescript-loader": "^5.2.1",
"copy-webpack-plugin": "^5.0.3",
"css-loader": "^2.1.1",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"request": "^2.88.0",
"request-promise-native": "^1.0.7",
"rimraf": "^2.6.3",
"style-loader": "^0.23.1",
"stylelint": "^10.0.1",
"stylelint-config-standard": "^18.3.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.6.0",
"surge": "^0.20.4",
"terser-webpack-plugin": "^1.2.3",
"ts-node": "^8.1.0",
"tsconfig-paths": "^3.8.0",
"tslint": "^5.16.0",
"tslint-react": "^4.0.0",
"typescript": "^3.4.5",
"typescript-plugin-lodash": "^0.1.0",
"webpack": "^4.30.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.1",
"webpack-dev-server": "^3.3.1",
"worker-loader": "^2.0.0"
},
"scripts": {
"clean": "rimraf docs",
"lint:js": "tslint -t stylish './src/**/*.ts'",
"lint:css": "stylelint './src/**/*.ts'",
"build:prod": "webpack --colors --config webpack/webpack.config.js --env=prod",
"build:analyze": "npm run clean && webpack --colors --config webpack/webpack.config.js --env=analyze",
"start": "npm run clean && webpack-dev-server --colors --watch --config webpack/webpack.config.js --env=dev",
"test": "echo \"No test\"",
"test:performance": "ts-node -O '{\"module\":\"commonjs\"}' -r tsconfig-paths/register test/engine-performance"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inker/draw.git"
},
"keywords": [
"cl",
"draw",
"champions",
"league",
"seeding",
"football",
"uefa",
"fifa"
],
"author": "Anton",
"license": "MIT",
"bugs": {
"url": "https://github.com/inker/draw/issues"
},
"homepage": "https://github.com/inker/draw#readme"
}