This repository has been archived by the owner on Apr 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.87 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
{
"name": "smogon-stats-site",
"version": "1.0.0-beta",
"description": "Website that shows Smogon usage stats in a pretty format.",
"author": {
"name": "Agustin San Roman",
"email": "agustinsanromanguzman@gmail.com",
"url": "https://github.com/asanrom"
},
"scripts": {
"watch": "npm run watch:ts",
"watch:ts": "npm run build:ts -- --watch --diagnostics",
"prebuild": "npm run lint",
"compile": "tsc --pretty",
"build": "rimraf dist && tsc --pretty && node minify && node build-resources.js",
"test": "npm run build",
"lint": "tslint --fix src/**/*.ts",
"start": "node index.js",
"quickstart": "npm run initconfig && npm run adminpasswd",
"initconfig": "node dist/init-config.js",
"adminpasswd": "node dist/admin-passwd.js"
},
"main": "index.js",
"engines": {
"node": ">= 8.11.0"
},
"dependencies": {
"adm-zip": "0.4.11",
"body-parser": "1.18.3",
"cookie-parser": "1.4.3",
"express": "4.16.3",
"express-fileupload": "0.4.0",
"material-design-icons": "3.0.1",
"mongodb": "3.0.10",
"xml": "1.0.1",
"read": "1.0.7"
},
"peerDependencies": {
"typescript": "^2.8"
},
"homepage": "https://github.com/asanrom/Smogon-Stats-Site",
"repository": {
"type": "git",
"url": "https://github.com/asanrom/Smogon-Stats-Site.git"
},
"bugs": {
"url": "https://github.com/asanrom/Smogon-Stats-Site/issues"
},
"private": true,
"license": "MIT",
"devDependencies": {
"@types/adm-zip": "^0.4.31",
"@types/body-parser": "^1.17.0",
"@types/cookie-parser": "^1.4.1",
"@types/express": "^4.11.1",
"@types/express-fileupload": "^0.1.1",
"@types/mongodb": "^3.0.21",
"@types/node": "^10.1.4",
"@types/read": "0.0.28",
"@types/xml": "^1.0.2",
"node-minify": "^3.1.0",
"rimraf": "^2.6.1",
"tslint": "^5.4.3",
"typescript": "^2.8.0"
}
}