-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.3 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
{
"name": "FIRSTScouting",
"version": "1.0.0",
"description": "FIRST Scouting Application for Team 1280",
"main": "src/index.js",
"bin": {
"scout": "src/index.js"
},
"author": "<[email protected]>",
"license": "GPL-3.0-or-later",
"packageManager": "[email protected]",
"engines": {
"node": ">=16.8.0",
"yarn": "^3.6.3"
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"dotenv": "^16.4.4",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.25.2",
"husky": "^8.0.3",
"inquirer": "^8.0.0",
"pinst": "^3.0.0",
"prettier": "^2.8.8"
},
"scripts": {
"lint:check": "eslint .",
"lint:fix": "eslint . --fix",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"postinstall": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"build": "node scripts/build.js",
"start": "node ."
},
"dependencies": {
"brotli-wasm": "^2.0.1",
"finalhandler": "^1.2.0",
"qrcode": "^1.5.3",
"serve-static": "^1.16.0",
"sync-fetch": "^0.5.2"
}
}