-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.45 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"private": true,
"name": "plustimer-pwa",
"version": "0.0.0",
"scripts": {
"app:start": "if-env NODE_ENV=production && npm run -s serve || npm run -s dev",
"app:build": "firebase use default && preact build --analyze",
"app:serve": "npm run build",
"app:dev": "preact watch --port 5000",
"app:deploy": "firebase use default && npm run app:build && firebase deploy --only hosting",
"lint": "flow check",
"precommit": "lint-staged"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie<=11"
],
"eslintConfig": {
"extends": [
"react-app",
"prettier"
],
"rules": {
"jsx-a11y/href-no-hash": "off",
"jsx-a11y/anchor-is-valid": [
"warn",
{
"aspects": [
"invalidHref"
]
}
],
"react/react-in-jsx-scope": "off"
}
},
"lint-staged": {
"{src,functions}/**/*.{js,json,css,md,es6}": [
"prettier --write",
"git add"
]
},
"eslintIgnore": [
"build/*"
],
"prettier": {
"singleQuote": true
},
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.0",
"@types/node": "^10.12.12",
"@types/webpack": "^4.4.21",
"awesome-typescript-loader": "^5.2.1",
"babel-eslint": "^10.0.1",
"concurrently": "^4.1.0",
"copy-webpack-plugin": "^4.6.0",
"cross-env": "^5.2.0",
"eslint": "^5.10.0",
"eslint-config-prettier": "^3.3.0",
"eslint-config-react-app": "^3.0.5",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"firebase-tools": "^6.1.2",
"husky": "^1.2.0",
"if-env": "^1.0.4",
"lint-staged": "^8.1.0",
"preact-cli": "^3.0.0-next.14",
"prettier": "^1.15.3",
"rimraf": "^2.6.2",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.17.0",
"tslint-react": "^3.6.0",
"typescript": "^3.2.2",
"webpack-bundle-analyzer": "^3.0.3",
"worker-loader": "^2.0.0"
},
"dependencies": {
"asyncro": "^3.0.0",
"date-fns": "^1.30.1",
"firebase": "^5.7.0",
"mitt": "^1.1.3",
"nano-sql": "^1.7.9",
"preact": "^8.4.2",
"preact-compat": "^3.18.3",
"preact-material-components": "^1.5.5",
"preact-portal": "^1.1.3",
"preact-router": "^2.6.1",
"preact-slots": "^1.0.0",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-media": "^1.9.2",
"unistore": "^3.1.0"
}
}