-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.38 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
44
45
46
47
48
49
50
51
52
{
"name": "parcel-template",
"version": "1.0.0",
"license": "MIT",
"private": false,
"scripts": {
"dev": "parcel serve ./src/index.html --dist-dir dist",
"build": "parcel build ./src/index.html --dist-dir build",
"prepare": "husky install",
"pre-commit": "lint-staged"
},
"devDependencies": {
"@parcel/transformer-sass": "^2.8.2",
"@parcel/transformer-typescript-tsc": "^2.8.2",
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react": "^7.31.11",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"parcel": "^2.8.2",
"postcss": "^8.4.12",
"prettier": "^2.8.4",
"process": "^0.11.10",
"stylelint": "^14.14.0",
"stylelint-config-prettier": "^9.0.4",
"stylelint-config-standard": "^25.0.0",
"stylelint-order": "^5.0.0",
"stylelint-prettier": "^2.0.0",
"typescript": "^4.9.3",
"typescript-plugin-css-modules": "^3.4.0"
},
"dependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"lint-staged": {
"*.{json,md}": [
"prettier --write"
],
"*.{js,jsx,ts,tsx,json}": [
"prettier --write",
"./node_modules/.bin/eslint --fix"
],
"*.{css,scss}": [
"stylelint --fix"
]
}
}