forked from acmucsd/membership-portal-ui-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.42 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
{
"name": "membership-portal-v2",
"version": "1.0.0",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": "18.x",
"yarn": ">=1.22",
"npm": "use-yarn-not-npm"
},
"scripts": {
"prettier": "prettier --write ./src",
"lint:js": "next lint",
"lint:css": "stylelint \"**/*.scss\"",
"lint": "yarn lint:js && yarn lint:css",
"lint:fix": "yarn prettier && eslint --fix \"src/**/*.+(js|jsx|ts|tsx)\" && stylelint --fix \"**/*.scss\"",
"type-css": "yarn typed-scss-modules src/ --exportType default --logLevel silent --watch",
"dev": "yarn type-css & yarn lint && next dev",
"dev:start": "next dev",
"build": "next build",
"start": "next start",
"prod": "next build && next start",
"test": "yarn cypress run",
"test:ui": "yarn cypress open"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/material": "^5.11.6",
"@next/env": "^13.2.4",
"@svgr/webpack": "^6.5.1",
"axios": "^1.6.0",
"axios-middleware": "^0.3.1",
"cookies-next": "^2.1.1",
"cypress": "13.6.2",
"ics": "^3.7.2",
"luxon": "^3.3.0",
"next": "^13.2.5-canary.30",
"next-pwa": "^5.6.0",
"next-themes": "^0.2.1",
"react": "18.2.0",
"react-confetti": "^6.1.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.43.0",
"react-icons": "^4.4.0",
"react-toastify": "^9.0.8",
"sass": "^1.55.0",
"sharp": "^0.32.6",
"totp-generator": "^0.0.14",
"typescript": "^4.8.4",
"validator": "^13.9.0"
},
"devDependencies": {
"@types/lodash": "^4.14.191",
"@types/luxon": "^3.3.0",
"@types/node": "18.8.1",
"@types/react": "18.0.21",
"@types/totp-generator": "^0.0.5",
"@types/validator": "^13.7.14",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"eslint": "8.24.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "12.3.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.13.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.3.13",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"postcss": "^8.4.31",
"prettier": "^2.7.1",
"stylelint": "^15.10.1",
"stylelint-config-sass-guidelines": "^10.0.0",
"stylelint-order": "^5.0.0",
"typed-scss-modules": "^7.0.2"
}
}