-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 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
93
94
95
96
97
98
99
100
101
{
"name": "freshers-fair-2022-graphics",
"version": "0.0.0",
"description": "",
"homepage": "",
"author": {
"name": "Marks Polakovs",
"email": "marks.polakovs@ystv.co.uk",
"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"
},
"nodecg": {
"compatibleRange": "^1.1.1",
"dashboardPanels": [
{
"name": "freshers-fair",
"title": "Freshers' Fair 2022",
"width": 4,
"file": "dashboard.html",
"headerColor": "#525F78",
"workspace": "Freshers Fair 2022"
},
{
"name": "edit-presets",
"title": "Edit Presets",
"width": 4,
"file": "editPresets.html",
"headerColor": "#525F78",
"dialog": true,
"dialogButtons": [
{
"name": "save",
"type": "confirm"
}
]
}
],
"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",
"@emotion/babel-plugin": "^11.10.2",
"@emotion/babel-preset-css-prop": "^11.10.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.38.0",
"babel-loader": "^8.2.2",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"eslint": "^8.24.0",
"eslint-plugin-react": "^7.31.8",
"file-loader": "^6.2.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": {
"@emotion/react": "^11.10.4",
"@types/react": "18",
"@types/react-dom": "18",
"antd": "^4.23.2",
"framer-motion": "^7.3.6",
"react": "18",
"react-dom": "18"
},
"browserslist": [
"defaults",
"Chrome >= 75"
]
}