generated from ivanms1/parcel-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.16 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "parcel-template",
"version": "1.0.0",
"license": "MIT",
"private": false,
"sourceMap": {
"inline": true,
"inlineSources": true
},
"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/config-webextension": "^2.0.0-nightly.2151",
"@parcel/transformer-sass": "2.0.0-beta.3.1",
"@parcel/transformer-svg-react": "^2.0.0-nightly.1739",
"@parcel/transformer-typescript-tsc": "^2.0.0-nightly.771",
"@types/chrome": "^0.0.147",
"@types/react": "^17.0.14",
"@types/react-dom": "^17.0.9",
"@types/react-modal": "^3.12.1",
"@types/react-router-dom": "^5.1.8",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"eslint": "^7.30.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-react": "^7.24.0",
"husky": "^7.0.1",
"lint-staged": "^11.0.0",
"parcel": "^2.0.0-beta.3.1",
"postcss": "^8.2.1",
"prettier": "^2.3.2",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^22.0.0",
"stylelint-order": "^4.1.0",
"stylelint-prettier": "^1.2.0",
"typescript": "^4.3.5",
"typescript-plugin-css-modules": "^3.4.0"
},
"dependencies": {
"axios": "^0.21.1",
"classnames": "^2.3.1",
"date-fns": "^2.22.1",
"framer-motion": "^4.1.17",
"pure-react-carousel": "^1.27.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-dropzone": "^11.3.4",
"react-hook-form": "^7.11.1",
"react-modal": "^3.14.3",
"react-outside-click-handler": "^1.3.0",
"react-query": "^3.19.0",
"react-router-dom": "^5.2.0",
"react-switch": "^6.0.0",
"react-toastify": "^7.0.4",
"react-tooltip": "^4.2.21",
"web3": "^1.5.0",
"zustand": "^3.5.7"
},
"lint-staged": {
"*.{json,md}": [
"prettier --write"
],
"*.{js,jsx,ts,tsx,json}": [
"prettier --write",
"./node_modules/.bin/eslint --fix"
],
"*.{css,scss}": [
"stylelint --fix"
]
}
}