forked from tlaukkan/code-reality
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 3.2 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": "code-reality",
"version": "0.0.36",
"description": "Code Reality framework enables building networked extended reality (XR) experiences with A-Frame.",
"main": "lib/src/index.js",
"types": "lib/src/index.d.ts",
"scripts": {
"lint": "eslint src test *.js",
"start": "ts-node src/node/app.ts",
"dev:node": "ts-node-dev src/node/app.ts",
"dev:browser": "webpack-dev-server --open",
"test:node": "mocha --require ts-node/register --exit ./test/node/**/*.ts ./test/common/**/*.ts",
"test:browser": "karma start karma.config.js",
"test": "npm run test:node && npm run test:browser",
"build:browser": "webpack --display-modules",
"build:browser:watch": "webpack --watch",
"build:html": "copyfiles src/**/*.html lib/",
"build:ts": "tsc",
"build:lib": "npm run build:ts && npm run build:html",
"prepublishOnly": "npm run build:lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tlaukkan/aframe-reality.git"
},
"keywords": [
"aframe",
"mesh"
],
"author": "Tommi Laukkanen",
"license": "ISC",
"bugs": {
"url": "https://github.com/tlaukkan/aframe-reality/issues"
},
"homepage": "https://github.com/tlaukkan/aframe-reality#readme",
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/preset-env": "^7.3.1",
"@babel/preset-typescript": "^7.1.0",
"@types/chai": "^4.1.6",
"@types/es6-promise": "^3.3.0",
"@types/mocha": "^5.2.5",
"babel-core": "^7.0.0-beta.3",
"babel-loader": "^8.0.4",
"babel-plugin-transform-html-import-to-string": "0.0.1",
"chai": "*",
"copy-webpack-plugin": "^4.5.1",
"copyfiles": "^2.1.0",
"karma": "^3.1.4",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.1.0",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-webpack": "^3.0.5",
"mocha": "*",
"raw-loader": "^2.0.0",
"source-map-loader": "^0.2.4",
"ts-loader": "^5.2.1",
"ts-node-dev": "^1.0.0-pre.42",
"webpack": "^4.15.1",
"webpack-cli": "^3.0.2",
"webpack-dev-server": "^3.1.14"
},
"dependencies": {
"@tlaukkan/aframe-material-collection-ts": "^0.5.17",
"@types/aframe": "^0.8.2",
"@types/config": "0.0.34",
"@types/express": "^4.16.0",
"@types/jsonwebtoken": "^8.3.0",
"@types/node": "^10.12.7",
"@types/passport": "^0.4.7",
"@types/passport-facebook": "^2.1.8",
"@types/passport-http": "^0.3.7",
"@types/passport-local": "^1.0.33",
"@types/three": "^0.93.18",
"@types/uuid": "^3.4.4",
"@types/websocket": "0.0.40",
"aframe-typescript-boilerplate": "^0.0.4",
"body-parser": "^1.18.3",
"config": "^1.30.0",
"console-stamp": "^0.2.6",
"cookie-parser": "^1.4.3",
"express": "^4.16.3",
"express-session": "^1.15.6",
"express-ws": "^4.0.0",
"jsonwebtoken": "^8.4.0",
"passport": "^0.4.0",
"passport-facebook": "^2.1.1",
"passport-http": "^0.3.0",
"passport-local": "^1.0.0",
"reality-space": "0.0.20",
"serve-static": "^1.13.2",
"ts-node": "^7.0.1",
"typescript": "^3.1.1",
"typescript-collections": "^1.3.2",
"uuid": "^3.2.1",
"websocket": "^1.0.26",
"ws": "^6.0.0"
}
}