forked from auth0-samples/auth0-nextjs-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.03 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
73
74
75
{
"name": "auth0-nextjs-sample",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently \"next dev\" \"node api-server\"",
"dev:api": "nodemon api-server",
"build": "next build",
"start": "concurrently \"next start\" \"node api-server\"",
"start:api": "node api-server",
"test": "jest tests --coverage --maxWorkers=10",
"test:watch": "jest --coverage --watch",
"test:integration": "start-server-and-test start http-get://localhost:3000 cypress:run",
"test:integration:watch": "start-server-and-test start http-get://localhost:3000 cypress:open",
"cypress:run": "cypress run",
"cypress:open": "cypress open"
},
"dependencies": {
"@auth0/nextjs-auth0": "^1.9.1",
"@fortawesome/fontawesome-svg-core": "^1.2.32",
"@fortawesome/free-solid-svg-icons": "^5.15.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"concurrently": "^6.5.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.18.1",
"express-jwt": "^6.1.2",
"helmet": "^4.3.1",
"highlight.js": "^11.6.0",
"jwks-rsa": "^2.1.4",
"morgan": "^1.10.0",
"next": "^12.2.4",
"nodemon": "^2.0.19",
"react": "17.0.2",
"react-dom": "17.0.2",
"reactstrap": "^8.10.1"
},
"devDependencies": {
"@testing-library/dom": "^8.17.1",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.1.5",
"babel-jest": "^27.5.1",
"cypress": "^7.6.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.1",
"prettier": "^2.7.1",
"start-server-and-test": "^1.11.7"
},
"jest": {
"testEnvironment": "jsdom",
"rootDir": "./",
"moduleNameMapper": {
".(css)$": "identity-obj-proxy"
},
"moduleFileExtensions": [
"js",
"jsx"
],
"setupFiles": [
"./tests/environment.js"
],
"setupFilesAfterEnv": [
"./tests/setup.js"
],
"collectCoverageFrom": [
"components/**/*.*",
"pages/**/*.*"
],
"coverageReporters": [
"lcov",
"text",
"text-summary"
]
}
}