-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 995 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 995 Bytes
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
{
"scripts": {
"dev": "npx parcel src/index.html",
"prod": "npx parcel build src/index.html",
"build": "npx parcel build src/index.html -d public --public-url ./"
},
"devDependencies": {
"babel-eslint": "^9.0.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^4.3.0",
"eslint-config-wesbos": "0.0.19",
"eslint-plugin-html": "^5.0.5",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^1.7.0",
"parcel-bundler": "^1.12.4",
"postcss": "^7.0.27",
"prettier": "^1.19.1",
"stylelint-config-recommended": "^3.0.0"
},
"dependencies": {
"@fullhuman/postcss-purgecss": "^2.0.6",
"tailwindcss": "^1.2.0",
"autoprefixer": "^9.7.4"
},
"eslintConfig": {
"extends": [
"wesbos"
]
},
"browserslist": [
"last 1 chrome versions"
]
}