-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
58 lines (58 loc) · 1.71 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
{
"name": "wooglies",
"version": "0.1.0",
"description": "",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-dev": "webpack --mode development",
"build": "webpack --mode production",
"webpack": "webpack serve --hot --mode development",
"prettier": "prettier",
"eslint": "eslint",
"start": "node server/index.js",
"dev": "concurrently --kill-others \"npm:start\" \"npm:webpack\""
},
"author": "Jure Triglav",
"license": "MIT",
"dependencies": {
"@geckos.io/snapshot-interpolation": "^1.0.2",
"@react-three/drei": "^3.3.0",
"dotenv": "^8.2.0",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-three-fiber": "^5.3.18",
"simple-peer": "^9.9.3",
"socket.io": "^3.1.0",
"socket.io-client": "^3.1.0",
"three": "0.125.0",
"twilio": "^3.56.0",
"zustand": "^3.3.1"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@hot-loader/react-dom": "^17.0.1+4.13.0",
"@react-three/xr": "^2.0.0",
"babel-loader": "^8.2.2",
"concurrently": "^5.3.0",
"css-loader": "^5.0.1",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.22.0",
"glslify-bundle": "^5.1.1",
"glslify-deps": "^1.3.2",
"prettier": "^2.2.1",
"react-hot-loader": "^4.13.0",
"style-loader": "^2.0.0",
"webpack": "^5.19.0",
"webpack-cli": "^4.4.0",
"webpack-dev-server": "^3.11.2"
}
}