This repository was archived by the owner on Mar 21, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.43 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.43 KB
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
{
"name": "chuck",
"version": "1.0.0",
"description": "RDM Alternative Written in JS",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"controller": "node src/controller.js",
"dataparser": "node src/dataparser.js",
"create-locales": "node -e 'require(\"./src/createLocales\").locales()'",
"generate": "node -e 'require(\"./src/generateMasterfile\").generate()'",
"test": "mocha",
"eslint": "npx eslint src/**/*.js",
"eslint-fix": "npx eslint src/**/*.js --fix",
"update": "npm install && npm run generate && npm run create-locales"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WatWowMap/Chuck.git"
},
"author": "WatWowMap",
"license": "ISC",
"bugs": {
"url": "https://github.com/WatWowMap/Chuck/issues"
},
"homepage": "https://github.com/WatWowMap/Chuck",
"dependencies": {
"@turf/turf": "^6.5.0",
"axios": "^0.21.4",
"better-logging": "^4.7.0",
"eslint": "^7.32.0",
"express": "^4.17.3",
"extend": "^3.0.2",
"google-protobuf": "^3.20.0",
"helmet": "^4.6.0",
"i18n": "^0.13.4",
"lru-cache": "^6.0.0",
"mustache-express": "^1.3.2",
"mysql2": "^2.3.3",
"nodes2ts": "^2.0.0",
"ohbem": "^1.4.1",
"pogo-protos": "git+https://github.com/Furtif/pogo-protos.git",
"redis": "^3.1.1",
"s2-geometry": "^1.2.10",
"sequelize": "^6.19.0"
},
"devDependencies": {
"mocha": "^8.4.0"
}
}