-
Notifications
You must be signed in to change notification settings - Fork 77
/
package.json
47 lines (47 loc) · 1.45 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
{
"name": "reactdevske",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --report-unused-disable-directives error",
"test": "playwright test",
"prettier:format": "prettier --write --ignore-path .gitignore .",
"prettier:check": "prettier --check --ignore-path .gitignore .",
"typecheck": "tsc --build",
"validate": "concurrently --kill-others-on-fail -g -p \"[{name}]\" -n \"prettier,lint,typecheck,build\" \"npm:prettier:check -s\" \"npm:lint -s\" \"npm:typecheck -s\" \"npm:build -s -- --no-lint\""
},
"pre-commit": [
"precommit-msg",
"validate"
],
"dependencies": {
"@headlessui/react": "^1.7.3",
"@types/react-google-recaptcha": "^2.1.5",
"axios": "^1.7.7",
"next": "12.3.1",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-google-recaptcha": "^2.1.0",
"react-icons": "^5.3.0"
},
"devDependencies": {
"@formspree/react": "^2.4.1",
"@playwright/test": "1.27.1",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@types/react": "18.0.21",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"autoprefixer": "10.4.7",
"concurrently": "^7.4.0",
"eslint": "8.17.0",
"eslint-config-next": "12.1.6",
"eslint-config-prettier": "^8.5.0",
"postcss": "8.4.14",
"pre-commit": "^1.2.2",
"prettier": "^2.7.1",
"tailwindcss": "3.1.2",
"typescript": "^4.8.4"
}
}