-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.38 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
{
"name": "nodecg-react-boilerplate",
"version": "0.0.0",
"description": "",
"homepage": "",
"author": {
"name": "Marks Polakovs",
"email": "[email protected]",
"url": ""
},
"scripts": {
"start": "cross-env NODE_ENV=development node startDevServer.js",
"build": "cross-env NODE_ENV=production webpack",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"schema": "json2ts -i schemas/ -o src/common/types/ && json2ts -i configschema.json -o src/common/types/config.d.ts",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src"
},
"nodecg": {
"compatibleRange": "^1.1.1",
"dashboardPanels": [
{
"name": "sample",
"title": "Sample",
"width": 2,
"file": "dashboard.html",
"headerColor": "#525F78"
}
],
"graphics": [
{
"file": "graphics.html",
"width": 1920,
"height": 1080
}
]
},
"repository": "https://github.com/ystv/nodecg-react-boilerplate.git",
"private": true,
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.4.3",
"@storybook/addon-actions": "^6.2.2",
"@storybook/addon-essentials": "^6.2.2",
"@storybook/addon-links": "^6.2.2",
"@storybook/react": "^6.2.2",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"babel-loader": "^8.2.2",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"eslint": "^8.28.0",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"fork-ts-checker-webpack-plugin": "^6.2.0",
"html-webpack-harddisk-plugin": "^2.0.0",
"html-webpack-plugin": "^5.3.1",
"json-schema-to-typescript": "^10.1.4",
"react-refresh": "^0.10.0",
"style-loader": "^3.3.1",
"ts-loader": "^8.1.0",
"typescript": "^4.2.3",
"webpack": "^5.30.0",
"webpack-cli": "^4.6.0",
"webpack-dev-middleware": "^4.1.0",
"webpack-dev-server": "^3.11.2",
"webpack-hot-middleware": "^2.25.0",
"webpack-merge": "^5.7.3"
},
"dependencies": {
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"browserslist": [
"defaults",
"Chrome >= 75"
]
}