forked from BREAD5940/scouting-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.29 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.29 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
{
"name": "scouting-frontend",
"version": "0.0.1",
"description": "A frontend to the frc-scouting package",
"main": "built/index.js",
"types": "built/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint",
"test": "npm run build && npm run lint && jest",
"start": "npm run build && node built/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheAnnalyst/scouting-frontend.git"
},
"keywords": [
"frc",
"robotics",
"scouting"
],
"author": "Annika <AnnasNodeLibraries@gmail.com>",
"license": "Apache-2.0",
"devDependencies": {
"@types/jest": "^26.0.15",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"codecov": "^3.8.1",
"eslint": "^7.14.0",
"eslint-config-google": "^0.14.0",
"jest": "^26.6.3",
"ts-jest": "^26.4.4"
},
"bugs": {
"url": "https://github.com/TheAnnalyst/scouting-frontend/issues"
},
"homepage": "https://github.com/TheAnnalyst/scouting-frontend#readme",
"dependencies": {
"@types/express": "^4.17.9",
"@types/sanitize-html": "^1.27.0",
"express": "^4.17.1",
"express-openid-connect": "^2.1.0",
"frc-scouting": "^0.1.2",
"sanitize-html": "^2.3.0",
"typed-html": "^2.0.0",
"typescript": "^4.1.2"
}
}