-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
38 lines (38 loc) · 964 Bytes
/
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
{
"name": "p2ce-panorama",
"version": "1.0.0",
"description": "Scripts for handling P2CE Panorama files",
"config": {
"baseDir": "./"
},
"scripts": {
"format:fix": "prettier --write **/*.{js,xml,scss,css,md}",
"format:check": "prettier --check **/*.{js,xml,scss,css,md}",
"lint:fix": "eslint \"**/*.js\" --fix",
"lint:check": "eslint \"**/*.js\"",
"prepare": "husky install",
"pre-commit": "lint-staged"
},
"author": "P2CE & Momentum Team",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"husky": "^8.0.1",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2",
"@prettier/plugin-xml": "^2.1.0",
"axios": "^0.26.0",
"papaparse": "^5.3.1",
"eslint": "^8.27.0",
"prettier-eslint": "^15.0.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unicorn": "^44.0.2"
},
"lint-staged": {
"**/*.{js,xml,scss,css,md}": [
"prettier --write"
],
"**/*.js": "eslint --fix"
}
}