This repository has been archived by the owner on Jun 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.24 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
{
"name": "peoples-choice",
"version": "1.0.0",
"description": "Feeling grateful? Want to recognise a colleague?",
"main": "index.js",
"scripts": {
"dev": "next",
"build": "yarn lint && next build",
"start": "next start",
"lint-fix": "eslint components pages state utils --ext .ts,.tsx --fix",
"lint": "eslint components pages state utils --ext .ts,.tsx --max-warnings=0"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@material-ui/core": "^4.9.7",
"@now/node": "^1.5.0",
"aws-sdk": "^2.814.0",
"cookie": "^0.4.0",
"cookie-parser": "^1.4.5",
"envalid": "^6.0.1",
"flux-standard-action": "^2.1.1",
"google-auth-library": "^5.10.1",
"googleapis": "^48.0.0",
"jsonwebtoken": "^8.5.1",
"knuth-shuffle": "^1.0.8",
"lodash": "^4.17.21",
"next": "^11.1.3",
"next-redux-wrapper": "^5.0.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-redux": "^7.2.0",
"react-rewards": "^1.1.1",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-saga": "^1.1.3",
"sagamatron": "^2.2.1",
"serialize-error": "^6.0.0",
"type-fest": "^0.12.0",
"typed-redux-saga": "^1.0.6"
},
"devDependencies": {
"@material-ui/icons": "^4.9.1",
"@next/bundle-analyzer": "^9.3.5",
"@types/flux-standard-action": "^1.1.0",
"@types/jsonwebtoken": "^8.3.8",
"@types/knuth-shuffle": "^1.0.0",
"@types/lodash": "^4.14.149",
"@types/node": "^13.7.4",
"@types/react": "^16.9.22",
"@types/react-redux": "^7.1.7",
"@types/redux": "^3.6.0",
"@typescript-eslint/eslint-plugin": "2.x",
"@typescript-eslint/parser": "2.x",
"eslint": "6.x",
"eslint-config-prettier": "^6.10.1",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "4.x",
"eslint-plugin-functional": "^3.0.1",
"eslint-plugin-import": "2.x",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-react": "7.x",
"eslint-plugin-react-hooks": "2.x",
"eslint-plugin-simple-import-sort": "^5.0.2",
"eslint-plugin-sonarjs": "^0.5.0",
"eslint-plugin-total-functions": "^1.36.0",
"isomorphic-unfetch": "^3.0.0",
"now": "^17.1.1",
"prettier": "^1.19.1",
"typescript": "^3.8.2"
}
}