-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
86 lines (86 loc) · 2.92 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
{
"name": "voxel-royal-client",
"version": "0.0.2",
"description": "Voxel Royal Game Client",
"author": "Alexander Belov <[email protected]>",
"private": true,
"scripts": {
"build": "cross-env NODE_ENV=production nuxt build",
"build:spa": "cross-env NODE_ENV=production nuxt build --spa",
"start": "cross-env HOST=0.0.0.0 PORT=8081 NODE_ENV=production nuxt start",
"start:spa": "cross-env HOST=0.0.0.0 PORT=8082 NODE_ENV=production nuxt start --spa",
"pm2:start": "pm2 start process.config.js --env production --only frontend",
"pm2:start:spa": "pm2 start process.config.js --env production --only spa",
"dev": "cross-env NODE_ENV=development nuxt",
"dev:spa": "cross-env NODE_ENV=development nuxt --spa",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint",
"rename-chunks": "node ./scripts/chunk-names.js"
},
"engines": {
"node": ">=8.0",
"npm": ">=4.0"
},
"dependencies": {
"@nuxtjs/axios": "^5.3.1",
"@nuxtjs/component-cache": "^1.1.1",
"@nuxtjs/router": "^1.0.1",
"bluebird": "^3.5.1",
"dat.gui": "^0.7.1",
"event-source-polyfill": "^0.0.12",
"eventemitter3": "^3.1.0",
"lodash.clonedeep": "^4.5.0",
"lodash.uniq": "^4.5.0",
"lru-cache": "^4.1.3",
"md-svg-vue": "^1.0.6",
"normalize.css": "^8.0.0",
"nuxt": "^1.4.0",
"parse-magica-voxel": "https://github.com/IPRIT/parse-magica-voxel.git",
"runtime-shaderfrog": "^0.2.0",
"socket.io-client": "^2.1.1",
"socketio-wildcard": "^2.0.0",
"ssr-intersection-observer": "^0.5.0",
"stats.js": "^0.17.0",
"three": "^0.91.0",
"three-orbit-controls": "^82.1.0",
"vue-virtual-repeater": "^1.1.15",
"vuex": "^3.0.1",
"vuex-router-sync": "^5.0.0",
"webworker-promise": "^0.4.1",
"worker-loader": "^1.1.1"
},
"devDependencies": {
"@nuxtjs/pwa": "^2.0.3",
"@nuxtjs/webpack-profile": "^0.1.0",
"@nuxtjs/webpackmonitor": "^0.1.0",
"@std/esm": "^0.25.5",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"compass-mixins": "^0.12.10",
"cross-env": "^5.1.3",
"eslint": "^4.3.0",
"eslint-config-standard": "^10.2.1",
"eslint-config-vue": "^2.0.2",
"eslint-loader": "^1.9.0",
"eslint-plugin-html": "^3.1.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-vue": "^2.1.0",
"jasmine-core": "^2.8.0",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^1.1.0",
"node-sass": "4.7.2",
"sass-bem-utils": "^1.15.0",
"sass-loader": "^6.0.6",
"semver": "^5.5.0",
"stats.js": "^0.17.0",
"three-webgl-stats": "^1.0.5"
}
}