-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
70 lines (70 loc) · 2.13 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
{
"name": "brackets-viewer",
"version": "1.6.2",
"description": "A simple library to display tournament brackets (round-robin, single elimination, double elimination)",
"files": [
"dist/"
],
"scripts": {
"db": "npx json-server --watch demo/db.json",
"build": "npx webpack --mode production",
"start": "npx webpack --watch --mode development",
"prepare": "npm run build",
"prepublishOnly": "npm run build",
"lint": "eslint '**/*.{js,ts}' --fix",
"test": "exit 0",
"watch-demo": "browser-sync demo . --watch dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Drarig29/brackets-viewer.js.git"
},
"keywords": [
"javascript",
"tournament",
"brackets",
"viewer",
"display"
],
"author": "Corentin Girard",
"license": "ISC",
"bugs": {
"url": "https://github.com/Drarig29/brackets-viewer.js/issues"
},
"browserslist": [
"defaults",
"not IE 11"
],
"homepage": "https://github.com/Drarig29/brackets-viewer.js#readme",
"dependencies": {
"brackets-manager": "^1.6.2",
"brackets-memory-db": "^1.0.4",
"brackets-model": "^1.5.0",
"i18next": "^21.6.14",
"i18next-browser-languagedetector": "^6.1.4",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"util": "^0.12.4"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"autoprefixer": "^10.4.4",
"babel-loader": "^8.2.4",
"browser-sync": "^2.29.3",
"css-loader": "^6.7.1",
"eslint": "^8.12.0",
"eslint-plugin-jsdoc": "^38.0.8",
"json-server": "^0.17.3",
"mini-css-extract-plugin": "^2.6.0",
"postcss": "^8.4.12",
"postcss-loader": "^6.2.1",
"sass": "^1.49.9",
"sass-loader": "^12.6.0",
"ts-loader": "^9.2.8",
"typescript": "^4.6.3",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2"
}
}