-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.94 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "react-css-modules-typescript-boilerplate",
"version": "1.0.0",
"scripts": {
"start": "parcel serve ./src/index.html",
"build": "parcel build ./src/index.html",
"lint": "eslint . --ext .ts,.tsx",
"validate-ts": "tsc --project ./tsconfig.json",
"prepare": "husky install"
},
"author": "",
"license": "ISC",
"dependencies": {
"classnames": "^2.3.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@parcel/transformer-postcss": "^2.8.3",
"@parcel/transformer-typescript-tsc": "2.8.3",
"@parcel/validator-typescript": "2.8.3",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^8.35.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"parcel": "2.8.3",
"parcel-transformer-ts-css-modules": "^1.0.14",
"postcss": "^8.4.21",
"postcss-modules": "^6.0.0",
"postcss-nested": "^6.0.1",
"postcss-plugin": "^1.0.0",
"prettier": "^2.8.4",
"process": "^0.11.10",
"typescript": "^4.9.5"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --fix",
"**/*": "prettier --write --ignore-unknown"
},
"lintStagedComments": {
"**/*": "https://prettier.io/docs/en/install.html#git-hooks"
},
"keywords": [
"parcel",
"parcel-v2",
"css",
"css-modules",
"typescript",
"ts"
],
"packageManager": "[email protected]"
}