This repository has been archived by the owner on Apr 27, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.98 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
{
"name": "evomp",
"version": "1.0.0",
"description": "A GT-MP Multiplayer framework. Frontend only.",
"repository": "git@github.com:Kola50011/EvoMp.git",
"author": "Sascha <sascha8a@gmail.com>",
"private": true,
"devDependencies": {
"@vue/component-compiler-utils": "^2.1.0",
"awesome-typescript-loader": "5.2.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-runtime": "^6.26.0",
"cross-env": "^5.1.3",
"glob": "^7.1.2",
"hard-source-webpack-plugin": "0.11.2",
"node-sass": "^4.13.1",
"parcel-bundler": "^1.10.0",
"parcel-plugin-markdown": "0.3.1",
"parcel-plugin-pug": "0.3.1",
"typescript": "^2.7.1",
"uglifyjs-webpack-plugin": "^1.1.8",
"vue-template-compiler": "^2.5.16",
"webpack": "4.16.3",
"webpack-command": "^0.4.1",
"xmlbuilder": "10.0.0"
},
"scripts": {
"debug": "node Build/clean.js && cross-env NODE_ENV=production node Build/web.js",
"build": "node Build/clean.js && cross-env NODE_ENV=production node Build/web.js && cross-env NODE_ENV=production webpack --config Build/webpack.config.js --mode production --run-prod --reporter basic && cross-env NODE_ENV=production node Build/createMeta",
"dev": "node Build/clean.js && cross-env NODE_ENV=development node Build/web.js && cross-env NODE_ENV=development webpack --config Build/webpack.config.js --log-level error --mode development --run-dev --reporter basic --cache && cross-env NODE_ENV=development node Build/createMeta",
"webpackDebug": "cross-env NODE_ENV=production webpack --config Build/webpack.config.js",
"generateMeta": "cross-env NODE_ENV=development node Build/createMeta"
},
"dependencies": {
"react": "^16.0.0",
"react-dom": "^16.4.2",
"vue": "^2.5.16",
"vue-hot-reload-api": "^2.3.0"
},
"browserslist": [
"last 1 Chrome version"
],
"babel": {
"plugins": [
[
"transform-runtime",
{
"polyfill": false,
"regenerator": true
}
]
]
}
}