-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.87 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": "map-conquest",
"version": "1.0.0",
"description": "A risk-like game where conquering the entire map is the objective",
"main": "index.js",
"scripts": {
"start": "node ./server/server.js",
"dev": "nodemon ./server/server.js",
"build": "webpack",
"watch": "webpack -w",
"lint": "eslint *.js",
"clean-logs": "node ./tools/clean-logs.js",
"refresh-data": "npm run get-mapbox-dataset && npm run validate-mapbox-dataset && npm run mapbox-dataset-add-center-of-mass && npm run create-territory-list",
"get-mapbox-dataset": "node ./tools/get-mapbox-dataset.js",
"validate-mapbox-dataset": "node ./tools/validate-mapbox-dataset.js",
"mapbox-dataset-add-center-of-mass": "node ./tools/mapbox-dataset-add-center-of-mass.js",
"create-territory-list": "node ./tools/create-territory-list.js",
"bot-spectator": "nodemon bots/spectator.js --config ./nodemon.bots.json",
"bot:dev": "nodemon ./bots/bot.js --config ./nodemon.bots.json",
"bot-challenger:dev": "nodemon ./bots/challenger.js --config ./nodemon.bots.json",
"territory-graph": "nodemon ./tools/graph/territoryGraph.js",
"test": "mocha --recursive ./server/**/*.test.js"
},
"author": "Lennart Kroneman",
"license": "ISC",
"dependencies": {
"@turf/turf": "^5.1.6",
"axios": "^0.21.1",
"dotenv": "^8.2.0",
"epsg-index": "^1.0.0",
"express": "^4.17.1",
"express-winston": "^3.3.0",
"fs-extra": "^8.1.0",
"geojson-to-svg": "git://github.com/kroneman/geojson2svg.git#add-attributes",
"html-webpack-plugin": "^3.2.0",
"lodash": "^4.17.15",
"mini-css-extract-plugin": "^0.7.0",
"proj4": "^2.5.0",
"socket.io": "^2.4.0",
"socket.io-client": "^2.2.0",
"vue": "^2.6.10",
"vue-router": "^3.0.7",
"vuex": "^3.1.1",
"winston": "^3.2.1"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/runtime": "^7.5.5",
"babel-loader": "^8.0.6",
"chai": "^4.2.0",
"copy-webpack-plugin": "^5.1.1",
"core-js": "^3.1.4",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-vue": "^5.2.3",
"file-loader": "^4.0.0",
"husky": "^3.0.3",
"lint-staged": "^9.2.1",
"mocha": "^7.0.1",
"node-sass": "^4.13.1",
"nodemon": "^1.19.1",
"sass-loader": "^7.1.0",
"scss-loader": "0.0.1",
"vue-loader": "^14.2.4",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.33.0",
"webpack-cli": "^3.3.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm test"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.vue": [
"eslint --fix",
"git add"
]
}
}