This repository has been archived by the owner on Aug 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
97 lines (97 loc) · 2.79 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
{
"name": "the-blue-alliance-pwa",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "https://github.com/the-blue-alliance/the-blue-alliance-pwa.git"
},
"license": "MIT",
"scripts": {
"dev": "node server.js",
"build": "rm -rf .next; next build",
"deploy": "gcloud --project tbatv-prod-hrd app deploy --version 1 --quiet",
"start": "cross-env NODE_ENV=production node server.js",
"prettier": "prettier \"**/*.{js,json,md,yaml}\" --check --ignore-path .gitignore",
"lint": "eslint \"**/*.js\"",
"test": "jest --coverage --verbose",
"test:watch": "jest --coverage --verbose --watch",
"analyze": "cross-env ANALYZE=true next build"
},
"dependencies": {
"@google-cloud/trace-agent": "^4.2.5",
"@material-ui/core": "^4.9.10",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.49",
"@next/bundle-analyzer": "^9.3.4",
"@zeit/next-source-maps": "0.0.4-canary.1",
"clipboard-polyfill": "^2.8.6",
"clsx": "^1.1.0",
"compression": "^1.7.4",
"cross-env": "^5.2.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"firebase": "^7.13.2",
"immutable": "^4.0.0-rc.12",
"isomorphic-unfetch": "^3.0.0",
"lru-cache": "^5.1.1",
"luxon": "^1.23.0",
"match-sorter": "^4.1.0",
"next": "^9.5.2",
"next-offline": "^5.0.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-intersection-observer": "^8.26.1",
"react-redux": "^7.2.0",
"react-virtualized": "^9.21.2",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-immutable": "^4.0.0",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"stackdriver-errors-js": "^0.7.0",
"use-dark-mode": "^2.3.1"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"babel-jest": "^24.9.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^5.16.0",
"eslint-loader": "^2.2.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^1.7.0",
"eslint-plugin-standard": "^4.0.1",
"file-loader": "^4.3.0",
"first-input-delay": "^0.1.3",
"husky": "^3.1.0",
"image-webpack-loader": "^5.1.0",
"jest": "^24.9.0",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"svg-url-loader": "^3.0.3",
"timezone-mock": "^1.0.18",
"url-loader": "^2.3.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{json,md,yaml}": [
"prettier --write",
"git add"
],
"*.js": [
"prettier --write",
"eslint --fix",
"git add",
"jest --bail --findRelatedTests"
]
}
}