-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.84 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
63
64
65
66
67
68
69
70
71
72
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"start": "next start",
"lint": "next lint",
"dev": "npm-run-all --parallel dev:*",
"dev:next": "next",
"dev:server": "node server.js",
"dev:all": "npm-run-all --parallel dev:next dev:server",
"test": "jest --watchAll",
"cypress": "cypress open",
"cypress:headless": "cypress run",
"format": "prettier --write \"**/*.js\""
},
"dependencies": {
"@next/font": "13.1.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"bootstrap": "^5.3.2",
"bson": "^1.1.5",
"cors": "^2.8.5",
"debug": "^4.3.4",
"eslint-config-next": "13.1.1",
"express": "^4.18.2",
"jotai": "^2.5.1",
"jsonwebtoken": "^9.0.2",
"jwt-decode": "^3.1.2",
"mongodb": "^6.3.0",
"mongoose": "^8.0.1",
"next": "^13.5.6",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"react": "18.2.0",
"react-bootstrap": "^2.7.0",
"react-dom": "18.2.0",
"swr": "^2.0.0"
},
"jest": {
"testEnvironment": "jsdom",
"moduleFileExtensions": [
"js",
"jsx",
"json"
],
"moduleNameMapper": {
"\\.(css|less|sass|scss)$": "identity-obj-proxy",
"\\.(gif|ttf|eot|svg)$": "<rootDir>/test/fileMock.js"
},
"transform": {
"^.+\\.(js|jsx)$": "babel-jest"
}
},
"devDependencies": {
"@babel/core": "^7.23.5",
"@babel/preset-env": "^7.23.5",
"@babel/preset-react": "^7.23.3",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"babel-jest": "^29.7.0",
"cypress": "^13.6.0",
"eslint": "^8.55.0",
"eslint-plugin-react": "^7.33.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.1.0"
}
}