-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.77 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
{
"name": "pixelbattle",
"version": "0.0.6",
"description": "",
"main": "index.js",
"scripts": {
"start": "node ./bin/www",
"migrate": "rethinkdb-migrate -f src/node/config.js",
"create-db": "node src/node/createDb.js",
"import-firebase": "node src/node/importFirebase.js",
"dev": "npm-run-all --parallel dev:front dev:back",
"dev:back": "nodemon ./bin/www",
"build": "webpack --mode production --config webpack.prod.js",
"dev:front": "webpack --mode development --config webpack.dev.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vamoss/pixelbattle.git"
},
"nodemonConfig": {
"ignore": [
"public/*",
"src/front/*"
]
},
"keywords": [
"googlemaps",
"collaboration",
"battle",
"pixel",
"painting",
"chat"
],
"author": "Vamoss",
"license": "ISC",
"bugs": {
"url": "https://github.com/Vamoss/pixelbattle/issues"
},
"homepage": "https://pixelbattle.com.br",
"devDependencies": {
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^0.28.10",
"dotenv-webpack": "^1.5.5",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"html-webpack-exclude-assets-plugin": "0.0.7",
"html-webpack-plugin": "^3.0.6",
"less": "^3.0.1",
"less-loader": "^4.1.0",
"npm-run-all": "^4.1.3",
"style-loader": "^0.20.3",
"uglifyjs-webpack-plugin": "^1.2.7",
"webpack": "^4.1.1",
"webpack-cli": "^3.1.0",
"webpack-merge": "^4.1.2"
},
"dependencies": {
"color": "^3.0.0",
"cookie-parser": "^1.4.3",
"express": "^4.16.3",
"fs-extra": "^7.0.0",
"http-errors": "^1.7.0",
"leaflet": "^1.3.1",
"leaflet-search": "^2.9.0",
"morgan": "^1.9.0",
"pug": "^2.0.3",
"rethinkdb": "^2.3.3",
"socket.io": "^2.1.1"
}
}