-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 782 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 782 Bytes
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
{
"name": "matrix-vr",
"version": "1.0.0",
"description": "The construct and digital rain from The Matrix in WebVR.",
"main": "src/index.js",
"scripts": {
"serve": "http-server .",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c && replace-in-file --configFile replace.config.js",
"serve-prod": "node serve-prod.js",
"deploy": "gh-pages -d dist"
},
"author": "Radek Pazdera <me@radek.io>",
"license": "MIT",
"dependencies": {
"http-server": "^0.11.1"
},
"devDependencies": {
"express": "^4.19.2",
"gh-pages": "^2.0.1",
"replace-in-file": "^4.1.1",
"rollup": "^1.17.0",
"rollup-plugin-copy": "^3.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0"
}
}