-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 3.01 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
{
"name": "pictio",
"version": "1.1.0",
"description": "An inclusive mini-game for humans and quasi-humans!",
"author": {
"name": "Luciano Frizzera",
"email": "[email protected]",
"url": "http://luciano.fluxo.art.br"
},
"contributors": [
{
"name": "Julia Salles",
"email": "[email protected]"
},
{
"name": "Julia Zamboni",
"email": "[email protected]"
}
],
"license": "CC-BY-NC-4.0",
"keywords": [
"Game",
"Machine Learning"
],
"repository": {
"type": "git",
"url": "https://github.com/lucaju/pictio"
},
"scripts": {
"clean": "rimraf dist && rimraf card && rimraf dashboard && rimraf locales",
"start-dev": "nodemon index.js",
"start": "node index.js",
"watch-game": "webpack --config webpack.dev.game.js --watch",
"watch-card": "webpack --config webpack.dev.card.js --watch",
"watch-dashboard": "webpack --config webpack.dev.dashboard.js --watch",
"dev-server-game": "webpack-dev-server --config webpack.dev.game.js",
"production-game": "webpack --config webpack.prod.game.js -p --progress",
"production-card": "webpack --config webpack.prod.card.js -p --progress",
"production-dashboard": "webpack --config webpack.prod.dashboard.js -p --progress",
"build-dev": "npm run clean && mkdirp locales && webpack --config webpack.dev.game.js && webpack --config webpack.dev.card.js && webpack --config webpack.dev.dashboard.js",
"production": "npm run clean && mkdirp locales && npm run production-game && npm run production-card && npm run production-dashboard",
"build": "npm run clean && mkdirp locales && npm run production-game && npm run production-card && npm run production-dashboard"
},
"main": "index.js",
"dependencies": {
"artyom.js": "^1.0.6",
"chalk": "^3.0.0",
"easytimer": "^1.1.1",
"event-emitter": "^0.3.5",
"express": "^4.17.1",
"i18next": "^19.0.2",
"i18next-xhr-backend": "^3.2.2",
"jquery": "^3.5.0",
"jquery-i18next": "^1.2.1",
"jquery-ui": "^1.12.1",
"luxon": "^1.21.3",
"mustache": "^3.1.0",
"nodemon": "^2.0.3",
"paper": "^0.12.3",
"progressbar.js": "^1.0.1",
"qrcode": "^1.4.4",
"random-weighted-choice": "^0.1.3",
"socket.io": "^2.4.0",
"socket.io-client": "^2.3.0",
"uikit": "^3.2.4",
"webpack-jquery-ui": "^2.0.1"
},
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.3.2",
"eslint": "^6.7.2",
"file-loader": "^5.0.2",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"html-webpack-template": "^6.2.0",
"image-webpack-loader": "^6.0.0",
"mini-css-extract-plugin": "^0.8.0",
"mustache-loader": "^1.4.3",
"rimraf": "^3.0.0",
"terser-webpack-plugin": "^2.3.0",
"webpack": "^4.41.2",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.10",
"webpack-dev-middleware": "^3.7.2",
"webpack-dev-server": "^3.9.0",
"webpack-merge": "^4.2.2",
"webpackbar": "^4.0.0"
}
}