-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 762 Bytes
/
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
{
"name": "nextjs-example",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "NODE_OPTIONS='-r @newrelic/next' next",
"build": "next build",
"start": "NODE_OPTIONS='-r @newrelic/next' next start",
"lint": "next lint"
},
"dependencies": {
"@newrelic/next": "^0.4.0",
"express": "^4.17.1",
"newrelic": "^9.11.0",
"next": "^13.2.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"winston": "^3.8.1"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/newrelic": "^9.4.0",
"@types/react": "17.0.30",
"babel-preset-env": "^1.7.0",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"prettier": "^2.4.1",
"ts-node": "^10.3.0",
"typescript": "4.4.4"
}
}