-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1.22 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
{
"name": "mode3d",
"version": "0.0.0",
"description": "Starter code",
"scripts": {
"client": " webpack serve",
"server": "nodemon server/server.js",
"build": "rm -f docs/core/*.js*; cd src/core && webpack --env prod"
},
"author": "mod3d",
"dependencies": {
"@babylonjs/core": "^4.2.0",
"@babylonjs/inspector": "^4.2.0",
"babylon-atlas": "^0.6.0",
"babylonjs": "^4.2.0",
"express": "4",
"game-inputs": "^0.4.1",
"gl-vec3": "^1.1.3",
"noa-engine": "^0.30.0",
"socket.io": "^4.1.3",
"socket.io-client": "^4.1.3",
"xhr2": "^0.2.1"
},
"devDependencies": {
"copy-webpack-plugin": "^9.0.1",
"webpack": "^5.39.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
},
"prettier": {
"arrowParens": "avoid",
"bracketSpacing": true,
"htmlWhitespaceSensitivity": "css",
"insertPragma": false,
"jsxBracketSameLine": false,
"jsxSingleQuote": true,
"printWidth": 1000,
"proseWrap": "preserve",
"quoteProps": "as-needed",
"requirePragma": false,
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none",
"useTabs": false,
"vueIndentScriptAndStyle": false,
"rangeStart": 0
}
}