-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.15 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": "free-to-play-games",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently \"npm run dev:client\" \"npm run dev:server\"",
"dev:client": "next dev -p 3001",
"dev:server": "node server.js",
"build": "next build",
"start": "next start -p 3001",
"lint": "next lint",
"commit": "git-cz"
},
"dependencies": {
"@ant-design/icons": "^5.2.5",
"@reduxjs/toolkit": "^1.9.5",
"antd": "^5.8.4",
"eslint": "8.48.0",
"eslint-config-next": "13.4.19",
"express": "^4.18.2",
"http-proxy-middleware": "^2.0.6",
"next": "^13.4.19",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.1.1",
"redux": "^4.2.1",
"typescript": "5.2.2"
},
"devDependencies": {
"@types/node": "^20.5.7",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"commitizen": "^4.3.0",
"commitlint": "^17.7.1",
"concurrently": "^8.2.1",
"cz-customizable": "^7.0.0",
"eslint-plugin-import": "^2.28.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
},
"cz-customizable": {
"config": "cz-config.js"
}
}