-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·82 lines (82 loc) · 2.56 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
{
"name": "@becode/mwenbwa",
"version": "0.0.1",
"description": "A web-based game of conquests… and trees",
"author": "leny <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"lint": "npx eslint --fix --cache --ignore-pattern 'docs/*' src",
"build:server": "npx babel src/server -s --out-dir bin/server",
"work:server": "npx babel src/server -s --watch --verbose --out-dir bin/server",
"build:client": "npx webpack --progress --profile --colors",
"work:client": "npx webpack --env=dev --progress",
"build": "npm run build:server && npm run build:client",
"start": "nodemon bin/server/index.js"
},
"lint-staged": {
"*.js": [
"npx eslint --fix --cache"
]
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.6",
"@babel/plugin-transform-runtime": "^7.14.3",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@becode/eslint-config": "^0.9.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"css-loader": "^5.2.4",
"dotenv-webpack": "^7.0.2",
"eslint": "^7.0.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-unicorn": "^20.0.0",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"lint-staged": "^10.2.3",
"nodemon": "^2.0.7",
"prettier": "^2.0.5",
"style-loader": "^2.0.0",
"uglifyjs-webpack-plugin": "^1.1.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"bootstrap": "^5.0.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"fantasy-name-generator": "^2.0.0",
"geolocation-utils": "^1.2.3",
"howler": "^2.2.1",
"jsonwebtoken": "^8.5.1",
"leaflet": "^1.7.1",
"leaflet.markercluster": "^1.5.0",
"moment": "^2.29.1",
"mongoose": "^5.12.7",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-async": "^10.0.1",
"react-dom": "^17.0.1",
"react-leaflet": "^3.1.0",
"react-leaflet-markercluster": "^3.0.0-rc1",
"react-loading": "^2.0.3",
"react-redux": "^7.2.4",
"react-router-dom": "^5.2.0",
"redux": "^4.1.0",
"redux-thunk": "^2.3.0",
"validator": "^13.6.0"
},
"engines": {
"node": "15.x"
}
}