-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 1.81 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
55
56
57
58
59
60
61
62
{
"name": "nextjs-with-express-server",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "nodemon",
"build": "next build && tsc --project tsconfig.server.json",
"start": "cross-env NODE_ENV=production node dist/server.js",
"test": "vitest --no-watch",
"test:open": "vitest --ui",
"cy": "cypress run --headless --browser chrome",
"cy:open": "cypress open --browser chrome",
"format": "prettier --ignore-unknown --write .",
"lint": "next lint"
},
"dependencies": {
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-list-endpoints": "^6.0.0",
"helmet": "^7.0.0",
"next": "latest",
"react": "latest",
"react-dom": "latest",
"uuid": "^9.0.1",
"winston": "^3.10.0"
},
"devDependencies": {
"@faker-js/faker": "latest",
"@types/chai": "^4.3.6",
"@types/cors": "latest",
"@types/express": "latest",
"@types/express-list-endpoints": "^6.0.1",
"@types/jest": "^29.5.5",
"@types/mocha": "^10.0.1",
"@types/node": "^20.7.0",
"@types/react": "latest",
"@types/react-dom": "latest",
"@types/uuid": "^9.0.3",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"@vitejs/plugin-react": "^4.0.4",
"@vitest/ui": "^0.34.3",
"autoprefixer": "latest",
"commitizen": "^4.3.0",
"cypress": "^13.2.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "8.48.0",
"eslint-config-next": "13.4.19",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-prettier": "^5.0.0",
"nodemon": "^3.0.1",
"postcss": "latest",
"prettier": "^3.0.3",
"tailwindcss": "latest",
"ts-node": "^10.9.1",
"typescript": "latest",
"vitest": "^0.34.3"
}
}