-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.28 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
{
"name": "rendering-garden",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"dev-both": "concurrently \"npm run dev-gui\" \"npm run dev-api\"",
"dev": "nodemon --ignore './build-sdk/' server.js",
"start": "node server.js",
"dev2": "xvfb-run -s \"-ac -screen 0 1080x1080x24\" nodemon server.js",
"dev-api": "xvfb-run -a nodemon --ignore './build-sdk/' server.js",
"lin": "xvfb-run -s \"-ac -screen 0 1080x1080x24\" node server.js",
"pm2create": "pm2 start ecosystem.config.js",
"kill1337": "sudo kill -9 `sudo lsof -t -i:1337`",
"pm2kill": "pm2 delete ecosystem.config.js",
"pm2restart": "npm run pm2kill; npm run pm2create;",
"log": "tail -f ./.cache/logs/combined.log",
"github": "git add .; git commit -am \"github backup\"; git push -u origin master",
"deploy": "npm run github; ./deploy.sh"
},
"author": "",
"license": "ISC",
"dependencies": {
"2d-array-rotation": "^2.0.0",
"browserify": "^16.5.0",
"canvas": "^2.6.1",
"canvas-text-wrapper": "^0.10.2",
"core-js": "^3.4.3",
"express": "^4.17.1",
"express-http-proxy": "^1.6.0",
"get-pixels": "^3.3.2",
"gl": "^4.4.0",
"jimp": "^0.9.3",
"jpeg-autorotate": "^5.0.2",
"localforage": "^1.7.3",
"lru-cache": "^5.1.1",
"ndarray": "^1.0.18",
"pngjs": "^3.4.0",
"save-pixels": "^2.3.4",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
"tailwindcss": "^1.1.4",
"three": "^0.110.0",
"tmp": "^0.1.0",
"vue": "^2.6.10",
"vue-router": "^3.1.3",
"vuex": "^3.1.2",
"webpack": "^4.41.2"
},
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@vue/cli-plugin-babel": "^4.1.0",
"@vue/cli-plugin-eslint": "^4.1.0",
"@vue/cli-plugin-router": "^4.1.0",
"@vue/cli-plugin-vuex": "^4.1.0",
"@vue/cli-service": "^4.1.0",
"@vue/eslint-config-standard": "^4.0.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"chunks-2-json-webpack-plugin": "^1.0.2",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^5.0.0",
"ejs-loader": "^0.3.5",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"vue-loader": "^15.7.2",
"vue-template-compiler": "^2.6.10",
"webpack-dev-middleware": "^3.7.2"
}
}