-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
101 lines (101 loc) · 2.74 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
95
96
97
98
99
100
101
{
"name": "nodecg-timekeeper",
"version": "0.9.0",
"description": "Simple timer for timekeeping program.",
"homepage": "",
"author": {
"name": "Cma",
"email": "chicchaima@gmail.com"
},
"files": [
"dashboard",
"graphics",
"extension"
],
"keywords": [
"node.js",
"nodecg",
"react",
"nodecg-bundle"
],
"scripts": {
"autofix": "run-s autofix:*",
"autofix:browser": "npm run lint:browser -- --fix",
"autofix:nodecg": "npm run lint:nodecg -- --fix",
"build": "webpack --mode=production",
"lint": "run-s lint:*",
"lint:browser": "eslint --ext .ts,.tsx src/browser",
"lint:nodecg": "eslint --ext .ts src/nodecg",
"dev": "webpack --watch --mode=development",
"schema-types": "nodecg schema-types -o src/nodecg/generated schemas",
"test": "jest"
},
"nodecg": {
"compatibleRange": ">=1.1.1",
"dashboardPanels": [
{
"name": "timekeeping",
"title": "Timekeeper",
"width": 2,
"file": "timekeeping.html"
}
],
"graphics": [
{
"file": "timekeeper.html",
"width": "1920",
"height": "1080",
"singleInstance": false
}
]
},
"repository": "https://github.com/cma2819/nodecg-timekeeper.git",
"license": "MIT",
"dependencies": {
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@fortawesome/fontawesome-free": "^5.15.3",
"@mui/icons-material": "^5.0.3",
"@mui/material": "^5.0.3",
"livesplit-core": "^0.10.2",
"lodash.clone": "^4.5.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-transition-group": "^4.4.2",
"styled-components": "^5.3.0"
},
"devDependencies": {
"@types/clone": "^2.1.0",
"@types/globby": "^9.1.0",
"@types/html-webpack-plugin": "^3.2.5",
"@types/jest": "^27.0.2",
"@types/lodash.clone": "^4.5.6",
"@types/node": "^15.6.2",
"@types/react": "^17.0.9",
"@types/react-dom": "^17.0.6",
"@types/react-transition-group": "^4.4.3",
"@types/styled-components": "^5.1.10",
"@types/webpack-merge": "^5.0.0",
"@types/webpack-node-externals": "^2.5.1",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"css-loader": "^6.3.0",
"eslint": "^7.27.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-react-hooks": "^4.2.0",
"globby": "^11.0.3",
"html-webpack-plugin": "^5.3.1",
"jest": "^27.2.5",
"nodecg-cli": "^7.0.0",
"style-loader": "^3.3.0",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"ts-nodecg": "^0.3.1",
"typescript": "^4.3.2",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0",
"webpack-merge": "^5.8.0",
"webpack-node-externals": "^3.0.0"
}
}