-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 902 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
{
"name": "ctf-anmeldung",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"prebuild": "npm run compile-scss",
"compile-scss": "sass --no-source-map --style compressed scss/:public/",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@hcaptcha/react-hcaptcha": "^1.3.0",
"bootstrap": "^5.1.3",
"next": "^12.1.6",
"nodemailer": "^6.9.7",
"react": "^18.1.0",
"react-bootstrap": "^2.4.0",
"react-dom": "^18.1.0",
"sass": "^1.69.5"
},
"devDependencies": {
"eslint": "^8.16.0",
"eslint-config-next": "^12.1.6",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.30.0",
"prop-types": "^15.8.1",
"webpack-cli": "^5.1.4"
}
}