-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.47 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": "threejs-journey-course-exercises",
"version": "0.1.0",
"private": true,
"license": "MIT",
"type": "module",
"workspaces": [
"exercise/*",
"final/*"
],
"scripts": {
"lint": "npm run lint:js && npm run lint:style && npm run lint:prettier && npm run tsc",
"lint-staged": "lint-staged",
"lint-staged:js": "eslint --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint --fix --cache --ext .js,.jsx,.ts,.tsx",
"lint:js": "eslint --cache --ext .js,.jsx,.ts,.tsx",
"lint:prettier": "prettier -c --write \"**/**.{js,ts,jsx,tsx,html,md,json,css,pcss}\" --end-of-line auto",
"lint:style": "stylelint --fix \"exercise/**/*.{css,pcss,jsx,tsx}\"",
"prepare": "husky install",
"tsc": "tsc --noEmit"
},
"lint-staged": {
"**/*.{css,pcss,jsx,tsx}": "stylelint",
"**/*.{js,jsx,ts,tsx}": "npm run lint-staged:js",
"**/*.{js,ts,jsx,tsx,html,md,json,css,pcss}": [
"prettier --write"
]
},
"devDependencies": {
"@emotion/babel-plugin": "^11.10.6",
"@emotion/eslint-plugin": "^11.10.0",
"@types/babel__core": "^7.20.0",
"@types/node": "^16.18.14",
"@umijs/lint": "^4.0.52",
"eslint": "^8.34.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"prettier": "^2.8.3",
"prettier-plugin-organize-imports": "^3.2.2",
"prettier-plugin-packagejson": "^2.4.3",
"stylelint": "^15.1.0",
"stylelint-config-recess-order": "^4.0.0",
"typescript": "^4.9.5"
},
"packageManager": "[email protected]"
}