-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.41 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": "example-extension-nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"start": "nodemon server.js",
"start:dev": "nodemon server.js",
"start:prod": "NODE_ENV=production node server.js",
"lint": "next lint",
"test": "jest --config jest.config.js --no-cache --detectOpenHandles --json --outputFile=./coverage/coverage.json"
},
"nodemonConfig": {
"watch": [
"server.js"
],
"ext": "js,json"
},
"dependencies": {
"@nestjs/serve-static": "^4.0.2",
"body-parser": "^1.20.3",
"cookie-parser": "^1.4.6",
"crypto-js": "^4.2.0",
"express": "^4.21.0",
"express-session": "^1.18.0",
"next": "14.2.14",
"passport": "^0.7.0",
"passport-oauth2": "^1.8.0",
"react": "^18",
"react-dom": "^18",
"sqlite3": "^5.1.7",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.25.7",
"@babel/preset-env": "^7.25.7",
"@babel/preset-react": "^7.25.7",
"@emotion/babel-plugin": "^11.12.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"babel-jest": "^29.7.0",
"cookie": "^1.0.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"next-router-mock": "^0.9.13",
"nodemon": "^3.1.4",
"supertest": "^7.0.0"
},
"engines": {
"node": ">=18.17.0"
}
}