-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
42 lines (42 loc) · 1.09 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
{
"name": "momentum-panorama",
"version": "2.0.0",
"description": "Scripts for handling Momentum Panorama files",
"config": {
"baseDir": "./"
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"format:fix": "prettier --write **/*.{js,ts,scss,css,md}",
"format:check": "prettier --check **/*.{js,ts,scss,css,md}",
"lint:fix": "eslint \"**/*.{js,ts}\" --fix",
"lint:check": "eslint \"**/*.{js,ts}\"",
"prepare": "husky install",
"pre-commit": "lint-staged",
"get-learn": "node tools/get-learn.js",
"get-credits": "node tools/get-credits.js"
},
"author": "Momentum Team",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "6.7.2",
"axios": "1.5.0",
"eslint": "8.49.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-unicorn": "48.0.1",
"husky": "8.0.3",
"lint-staged": "14.0.1",
"papaparse": "5.4.1",
"prettier": "3.0.3",
"prettier-eslint": "15.0.1",
"typescript": "5.2.2"
},
"lint-staged": {
"**/*.{js,ts,scss,css,md}": [
"prettier --write"
],
"**/*.{js,ts}": "eslint --fix"
}
}