This repository has been archived by the owner on Dec 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
69 lines (69 loc) · 2.36 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": "openrct2.org",
"version": "3.9.0",
"private": false,
"type": "module",
"scripts": {
"buildFrontend": "webpack --config frontend/webpack.config.js",
"buildServer": "babel src --out-dir dist --delete-dir-on-start --copy-files --source-maps",
"build": "npm run buildServer && npm run buildFrontend",
"watch": "nodemon --legacy-watch -e js,cjs,eta,json,scss,css --watch src --watch frontend --watch config --watch views --signal SIGKILL --exec \"npm run build && npm start\"",
"start": "node --experimental-json-modules --enable-source-maps dist/app.js",
"test": "eslint --ext .js src/ && eslint --ext .js frontend/"
},
"author": {
"name": "Limetric",
"email": "[email protected]",
"url": "https://limetric.com"
},
"repository": {
"type": "git",
"url": "https://github.com/Limetric/OpenRCT2.org.git"
},
"browserslist": [
"last 2 iOS versions, last 2 and_ff versions, last 2 ChromeAndroid versions, last 3 safari versions, last 3 chrome versions, last 3 firefox versions, last 3 edge versions, last 3 opera versions, not dead"
],
"dependencies": {
"@octokit/rest": "19.0.3",
"@sentry/integrations": "7.4.1",
"@sentry/node": "7.4.1",
"core-js": "3.23.3",
"eta": "1.12.3",
"express": "4.18.1",
"express-async-errors": "3.1.1",
"express-minify-html-2": "1.0.1",
"got": "12.1.0",
"jsonfile": "6.1.0",
"lodash": "latest",
"multer": "1.4.5-lts.1",
"mysql2": "2.3.3",
"normalize.css": "8.0.1",
"object-hash": "3.0.0"
},
"devDependencies": {
"@babel/cli": "7.18.6",
"@babel/core": "7.18.6",
"@babel/eslint-parser": "7.18.2",
"@babel/eslint-plugin": "7.17.7",
"@babel/plugin-syntax-import-assertions": "7.18.6",
"@babel/preset-env": "7.18.6",
"babel-loader": "8.2.5",
"css-loader": "6.7.1",
"css-minimizer-webpack-plugin": "4.0.0",
"eslint": "8.19.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsdoc": "39.3.3",
"eslint-plugin-promise": "6.0.0",
"mini-css-extract-plugin": "2.6.1",
"nodemon": "2.0.19",
"resolve-url-loader": "5.0.0",
"sass": "1.53.0",
"sass-loader": "13.0.2",
"terser-webpack-plugin": "5.3.3",
"webpack": "5.73.0",
"webpack-assets-manifest": "5.1.0",
"webpack-bundle-analyzer": "4.5.0",
"webpack-cli": "4.10.0"
}
}