-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.18 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.18 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
{
"name": "p2ce-panorama",
"version": "1.0.0",
"description": "Scripts for handling P2CE Panorama files",
"config": {
"baseDir": "./"
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"format:fix": "prettier --plugin=@prettier/plugin-xml --write **/*.{js,xml,scss,css,md,ts}",
"format:check": "prettier --plugin=@prettier/plugin-xml --check **/*.{js,xml,scss,css,md,ts}",
"lint:fix": "eslint \"**/*.{js,ts}\" --fix",
"lint:check": "eslint \"**/*.{js,ts}\"",
"prepare": "husky install",
"pre-commit": "lint-staged"
},
"author": "P2CE & Momentum Team",
"license": "MIT",
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.36.0",
"@prettier/plugin-xml": "^3.4.2",
"axios": "^1.12.2",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-unicorn": "^61.0.2",
"husky": "^9.1.7",
"lint-staged": "^16.2.1",
"papaparse": "^5.5.3",
"prettier": "^3.6.2",
"prettier-eslint": "^16.4.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.44.1"
},
"lint-staged": {
"**/*.{js,xml,scss,css,md}": [
"prettier --plugin=@prettier/plugin-xml --write"
],
"**/*.js": "eslint --fix"
}
}