-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·105 lines (105 loc) · 3.12 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "bertasnakes",
"version": "0.9.7",
"description": "Multiplayer browser game created by Aktyn",
"main": "sources/server/main.ts",
"sideEffects": [
"**/*.css",
"**/*.scss"
],
"scripts": {
"client:dev": "webpack-dev-server --config ./webpack.config.js",
"client:build": "webpack --config ./webpack.config.js",
"client:publish": "rm -rf ./dist/client && NODE_ENV='production' webpack --config ./webpack.config.js -p",
"server:dev": "NODE_ENV=dev nodemon --watch sources/server/ --watch sources/common/ --exec 'tsc -p ./sources/server/tsconfig.json && node ./dist/server/main.js' -e ts",
"server:publish": "rm -rf ./dist/server && rm -rf ./dist/common && NODE_ENV=prod tsc -p ./sources/server/tsconfig.json",
"server:run": "NODE_ENV=prod node dist/server/main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Aktyn/BertaSnakes.git"
},
"keywords": [
"Berta",
"Snakes",
"Multiplayer",
"Online",
"Browser"
],
"author": "Aktyn",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/Aktyn/BertaSnakes/issues"
},
"homepage": "https://github.com/Aktyn/BertaSnakes#readme",
"dependencies": {
"body-parser": "^1.19.0",
"canvas": "^2.5.0",
"chart.js": "^2.8.0",
"email-exists": "^0.2.1",
"express": "^4.17.1",
"express-fileupload": "^1.1.5",
"ip": "^1.1.5",
"mongodb": "^3.2.7",
"mysql": "^2.17.1",
"node-fetch": "^2.6.0",
"nodemailer": "^5.1.1",
"paypal-rest-sdk": "^1.8.1",
"prompt-sync": "^4.1.7",
"react": "^16.8.6",
"react-chartjs-2": "^2.7.6",
"react-dom": "^16.8.6",
"react-image-gallery": "^0.8.18",
"react-router-dom": "^4.3.1",
"web-push": "^3.3.5",
"ws": "^6.2.1"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/chart.js": "^2.7.56",
"@types/express": "^4.17.0",
"@types/express-fileupload": "^0.4.0",
"@types/ip": "^1.1.0",
"@types/mongodb": "^3.1.30",
"@types/mysql": "^2.15.6",
"@types/node": "^10.14.13",
"@types/nodemailer": "^4.6.8",
"@types/paypal-rest-sdk": "^1.7.4",
"@types/react": "^16.8.23",
"@types/react-chartjs-2": "^2.5.7",
"@types/react-dom": "^16.8.5",
"@types/react-image-gallery": "^0.8.4",
"@types/react-loadable": "^5.5.1",
"@types/react-router-dom": "^4.3.4",
"@types/web-push": "^3.3.0",
"@types/webpack-env": "^1.14.0",
"@types/ws": "^6.0.1",
"app-manifest-webpack-plugin": "^1.2.0",
"autoprefixer": "^9.6.1",
"base-href-webpack-plugin": "^2.0.0",
"css-loader": "^2.1.1",
"fast-sass-loader": "^1.5.0",
"file-loader": "^3.0.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "^4.6.0",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.12.0",
"nodemon": "^1.19.1",
"postcss-loader": "^3.0.0",
"raw-loader": "^3.1.0",
"react-loadable": "^5.5.0",
"resolve-url-loader": "^3.1.0",
"robotstxt-webpack-plugin": "^6.0.0",
"sass-loader": "^7.1.0",
"serviceworker-webpack-plugin": "^1.0.1",
"style-loader": "^0.23.1",
"ts-loader": "^6.0.4",
"typescript": "^3.5.3",
"uglifyjs-webpack-plugin": "^2.1.3",
"url-loader": "^1.1.2",
"webpack": "^4.38.0",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2"
}
}