-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.65 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.65 KB
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
{
"name": "stream-nexus",
"version": "1.0.0",
"description": "SNEED - Stream Nexus aggregation server. In development.",
"main": "index.js",
"scripts": {
"webpack": "webpack --config webpack.config.js",
"build": "webpack --config webpack.config.js",
"build:editor": "cd editor && npm run build",
"build:frontend": "npm run build && shx cp src/frontend/overlay/style.css src/frontend/dashboard/dashboard.css src/frontend/shared/variables.css src/frontend/shared/overlay-elements.css public/ && shx cp node_modules/matter-js/build/matter.min.js public/",
"build:static": "shx cp -r static/* public/",
"build:all": "npm run build:frontend && npm run build:static && npm run build:editor",
"watch:frontend": "webpack --watch",
"dev:editor": "cd editor && npm run dev",
"clean": "shx rm -rf public/script.js public/style.css public/dashboard.js public/dashboard.css public/variables.css public/overlay-elements.css public/editor public/js/*.js public/matter.min.js public/background.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/usips/stream-nexus.git"
},
"keywords": [],
"author": "Joshua Moon <josh@josh.rs>",
"license": "BSD-3-Clause",
"type": "commonjs",
"bugs": {
"url": "https://github.com/usips/stream-nexus/issues"
},
"homepage": "https://github.com/usips/stream-nexus#readme",
"devDependencies": {
"@types/matter-js": "^0.20.2",
"shx": "^0.4.0",
"ts-loader": "^9.5.1",
"typescript": "^5.7.3",
"webpack": "^5.101.3",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
},
"dependencies": {
"glob": "^11.0.3",
"matter-js": "^0.20.0"
}
}