-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.44 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
{
"name": "project-xyz-app-next",
"version": "1.0.0",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/knocknockguesswho/project-xyz-app-next.git"
},
"author": "faris",
"license": "MIT",
"scripts": {
"dev": "next dev -p 8000",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@reduxjs/toolkit": "^1.9.1",
"axios": "^1.2.1",
"dotenv": "^16.0.3",
"next": "^13.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.5",
"redux": "^4.2.0",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.4.2",
"webpack": "^5.75.0"
},
"devDependencies": {
"@babel/core": "^7.20.7",
"@babel/eslint-plugin": "^7.19.1",
"@babel/helper-regex": "^7.10.5",
"@tailwindcss/line-clamp": "^0.4.2",
"@types/babel-core": "^6.25.7",
"@types/dotenv": "^8.2.0",
"@types/node": "^18.11.17",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@types/react-redux": "^7.1.24",
"@types/redux": "^3.6.0",
"@types/redux-thunk": "^2.1.0",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"autoprefixer": "^10.4.13",
"babel-loader": "^9.1.0",
"eslint": "^8.30.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-standard": "^5.0.0",
"postcss": "^8.4.20",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.4"
}
}