-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 1012 Bytes
/
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
{
"name": "abakus-charitystream",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"lint": "next lint --fix",
"prettier": "prettier '**/*.{js,ts,tsx,css,md}' --write",
"ci-lint": "next lint",
"ci-prettier": "prettier '**/*.{js,ts,tsx,css,md}' --check"
},
"dependencies": {
"classnames": "^2.3.2",
"cors": "^2.8.5",
"mongoose": "^6.6.1",
"next": "^12.3.1",
"postcss-preset-env": "^7.8.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-modal": "^3.15.1",
"react-youtube": "^10.0.0",
"swr": "^1.3.0",
"tailwindcss": "^3.1.8",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@types/react": "^18.0.20",
"@typescript-eslint/parser": "^5.38.0",
"eslint": "^8.23.1",
"eslint-config-next": "12.3.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"prettier": "^2.7.1",
"typescript": "^4.8.3"
}
}