-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.37 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
{
"name": "pixels-web-api",
"version": "1.0.0",
"description": "Artboard Web API for Meta Construct Garry's Mod servers.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"build": "npm run build:web && npm run build:ts",
"build:web": "cd assets && google-closure-compiler -O ADVANCED --externs externs.js --js script.js --js_output_file static/script.js",
"build:ts": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/metastruct/pixels-web-api.git"
},
"author": "Meta Construct (Wicopee)",
"license": "Apache-2.0",
"bugs": {
"url": "https://gitlab.com/metastruct/pixels-web-api/issues"
},
"homepage": "https://gitlab.com/metastruct/pixels-web-api#readme",
"dependencies": {
"canvas": "^2.11.2",
"express": "^4.17.1",
"express-rate-limit": "^6.6.0",
"fast-xml-parser": "^4.3.6",
"google-closure-compiler": "^20240317.0.0",
"node-schedule": "^2.0.0",
"ws": "^7.3.0"
},
"devDependencies": {
"@types/express": "^4.17.12",
"@types/node": "^18.19.26",
"@types/node-schedule": "^1.3.2",
"@types/ws": "^7.4.5",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.0.5",
"typescript": "^4.3.4"
}
}