-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
70 lines (70 loc) · 1.65 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": "@synesthesia-project/light-desk",
"version": "2.1.1",
"description": "A Node.js library for creating control panels for controlling lighting and other things",
"keywords": [
"lighting",
"lights",
"dmx",
"ola",
"osc",
"react",
"touch"
],
"license": "MIT",
"main": "build/backend/index.js",
"types": "build/backend/index.d.js",
"author": {
"name": "Sam Lanning",
"email": "[email protected]",
"url": "https://samlanning.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/synesthesia-project/light-desk"
},
"scripts": {
"build": "gulp",
"lint": "gulp lint",
"clean": "gulp clean",
"lint:fix": "gulp lint:fix"
},
"devDependencies": {
"@synesthesia-project/gulp-util": "~0.0.1",
"@types/express": "^4.17.13",
"@types/lodash": "^4.14.120",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/styled-components": "~5.1.26",
"@types/ws": "^8.2.2",
"gulp": "~4.0.2",
"gulp-clean": "^0.3.2",
"gulp-typedoc": "^3.0.2",
"gulp-webpack": "1.5.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "~18.2.0",
"run-sequence": "^1.2.2",
"source-map-loader": "~0.2.4",
"styled-components": "5.3.3",
"typedoc": "^0.23.28",
"typescript": "~4.9.4"
},
"dependencies": {
"@synesthesia-project/compositor": "^0.0.1",
"@types/node": "~18.11.18",
"lodash": "^4.17.13",
"ws": "^8.4.0"
},
"peerDependencies": {
"@types/express": "^4.17.13"
},
"peerDependenciesMeta": {
"@types/express": {
"optional": true
}
},
"files": [
"build/**/*"
]
}