-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.24 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
{
"name": "traxwebsite",
"version": "1.0.11",
"description": "TraX: Racing Data Collector",
"homepage": "https://trax.campbellcrowley.com",
"bugs": {
"email": "[email protected]"
},
"license": "UNLICENSED",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/CampbellCrowley/TraXWebsite"
},
"dependencies": {
"dateformat": "^3.0.3",
"get-folder-size": "^2.0.1",
"google-auth-library": "^6.0.6",
"lz-string": "^1.4.4",
"mkdirp": "^1.0.4",
"mysql": "^2.18.1",
"path": "^0.12.7",
"rimraf": "^3.0.0",
"socket.io": "^2.3.0"
},
"contributors": [
{
"name": "Campbell Crowley",
"email": "[email protected]"
}
],
"devDependencies": {
"eslint": "^7.8.1",
"eslint-config-google": "^0.14.0",
"jsdoc-to-markdown": "^6.0.1"
},
"scripts": {
"install": ".hooks/install-hooks.sh",
"lint": "eslint $(find ./ -iname '*.js' -not -path './node_modules/*' -not -iname '*.min.js' -not -iname '.eslintrc.js' -printf '%p ')",
"lint:fix": "eslint $(find ./ -iname '*.js' -not -path './node_modules/*' -not -iname '*.min.js' -not -iname '.eslintrc.js' -printf '%p ') --fix",
"docs": "npm run lint && bash .hooks/make-docs.sh"
}
}