-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.52 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
{
"name": "vs-covid19-for-business",
"version": "1.0.0",
"main": "src/App.tsx",
"repository": "https://github.com/codeforyouth/vs-covid19-for-business.git",
"author": "yokinist <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "parcel src/index.html --no-cache",
"build": "parcel build src/index.html --no-source-maps",
"watch": "parcel watch src/index.html"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"alias": {
"react": "preact/compat",
"react-dom": "preact/compat"
},
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/plugin-transform-runtime": "^7.8.3",
"@types/styled-components": "^5.0.1",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"eslint": "^6.8.0",
"eslint-config-developit": "^1.1.1",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"parcel-bundler": "^1.12.4",
"prettier": "^1.19.1",
"typescript": "^3.8.3"
},
"dependencies": {
"@material-ui/core": "^4.9.5",
"@material-ui/icons": "^4.9.1",
"axios": "^0.19.2",
"preact": "^10.3.3",
"preact-router": "^3.2.1",
"react-infinite-scroll-component": "^5.0.4",
"styled-components": "^5.0.1",
"styled-media-query": "^2.1.2",
"unstated-next": "^1.1.0"
}
}