-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.29 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
{
"engines": {
"node": "^16.18.0",
"npm": "^8.19.2"
},
"scripts": {
"build": "next build",
"build:analyze": "cross-env ANALYZE=true next build",
"dev": "cross-env NODE_OPTIONS='--inspect --max_old_space_size=8192 --max-http-header-size=32768 -r @newrelic/next' next dev",
"dev:vercel": "vercel dev",
"test:unit": "jest",
"test:unit:all": "jest --testPathIgnorePatterns '.*.integration.js'",
"start": "cross-env NODE_OPTIONS='--max-http-header-size=32768 -r @newrelic/next' next start -p 8081",
"test:unit:watch": "npm run test:unit:all -- --silent=false --watch",
"test:unit:coverage": "npm run test:unit:all -- --coverage",
"test:unit:ci": "npm run test:unit:coverage -- --maxWorkers=4",
"test:integration": "jest --testMatch '**/*.integration.js'",
"test:integration:ci": "npm run test:integration -- --maxWorkers=4",
"test:e2e": "cypress run --config-file cypress.json --env allure=true",
"test:e2e:watch": "cypress open --config-file cypress.json",
"test:e2e:ci": "cross-env-shell CYPRESS=true \"npm run dev & wait-on http://localhost:3000 && npm run test:e2e\"",
"lint": "eslint src tests internal config --ext .js,.jsx,.ts,.tsx --report-unused-disable-directives",
"lint:fix": "npm run lint -- --fix",
"analyze": "ANALYZE=true next build",
"prestart": "patch-package",
"postinstall": "patch-package",
"type-check": "tsc"
},
"dependencies": {
"@auth0/nextjs-auth0": "2.0.0",
"@newrelic/next": "^0.3.1",
"@swc/helpers": "^0.4.12",
"@upstash/redis": "^1.18.1",
"case-sensitive-paths-webpack-plugin": "^2.4.0",
"dotenv": "^16.0.3",
"next": "^12.1.6",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.0.4",
"@swc/cli": "^0.1.57",
"@swc/core": "^1.3.10",
"@swc/jest": "^0.2.23",
"@types/auth0": "^2.33.5",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"cross-env": "^7.0.3",
"duplicate-package-checker-webpack-plugin": "^3.0.0",
"eslint": "^8.26.0",
"eslint-import-resolver-alias": "^1.1.2",
"identity-obj-proxy": "^3.0.0",
"mockdate": "^3.0.5",
"patch-package": "^6.5.0",
"prettier": "^2.3.2",
"typescript": "^4.4.2"
},
"publishConfig": {
"access": "restricted"
}
}