forked from ScottyLabs/tartanhacks-registration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.59 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
{
"name": "tartanhacks-registration",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:local": "NODE_ENV=local next dev",
"dev:prod": "NODE_ENV=production next dev",
"build": "next build",
"start": "next start",
"start:staging": "NODE_ENV=staging next start",
"lint": "npm run lint:pretty && npm run lint:only && next lint",
"lint:only": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"lint:pretty": "prettier --write ."
},
"dependencies": {
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.60",
"@material-ui/styles": "^4.11.4",
"axios": "^0.21.1",
"axios-middleware": "^0.3.1",
"bson": "^4.5.1",
"csv": "^5.5.3",
"email-validator": "^2.0.4",
"form-data": "^4.0.0",
"helmet": "^4.6.0",
"luxon": "^2.1.1",
"mongoose": "^6.0.0",
"next": "^12.0.4",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-redux": "^7.2.5",
"react-table": "^7.7.0",
"redux": "^4.1.1",
"redux-devtools-extension": "^2.13.9",
"redux-logger": "^3.0.6"
},
"devDependencies": {
"@types/luxon": "^2.0.7",
"@types/react": "17.0.19",
"@types/react-redux": "^7.1.18",
"@types/react-table": "^7.7.9",
"@types/redux-logger": "^3.0.9",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"eslint": "7.32.0",
"eslint-config-next": "11.1.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.24.2",
"prettier": "^2.4.1",
"typescript": "4.3.5"
}
}