-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.44 KB
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": "the-posting-platform",
"version": "0.1.8",
"private": false,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"format": "prettier --write . && yarn lint:fix",
"lint": "next lint",
"lint:fix": "next lint --fix",
"prepare": "husky install",
"setup-script": "node setupScript.js"
},
"bin": {
"create-posting-platform": "setupProject.js",
"create-api-helpers": "createApi.js"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.254.0",
"@aws-sdk/lib-dynamodb": "^3.254.0",
"@aws-sdk/types": "^3.254.0",
"@reduxjs/toolkit": "^1.9.7",
"@types/node": "18.11.10",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.9",
"aws-sdk": "^2.1299.0",
"classnames": "^2.3.2",
"eslint": "8.29.0",
"eslint-config-next": "13.0.6",
"fs-extra": "^11.2.0",
"next": "13.0.6",
"next-auth": "^4.18.7",
"nodemailer": "^6.8.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-redux": "^8.1.3",
"typescript": "4.9.3"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.8",
"autoprefixer": "^10.4.13",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.29.1",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"postcss": "^8.4.20",
"prettier": "^2.8.1",
"tailwindcss": "^3.2.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "prettier --write && yarn run lint:fix"
}
}