-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.26 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
{
"name": "auth-api",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"dev:test": "SKIP_AUTH_FOR_TESTS='true' next dev",
"start": "NODE_ENV='production' next start",
"export": "next export",
"lint": "next lint",
"test": "jest --verbose ./tests",
"test:integration": "jest --verbose ./tests/integration",
"test:unit": "jest --verbose ./tests/unit",
"start:e2e": "npx start-server-and-test dev:test 3000 \"yarn test:e2e\"",
"format": "dprint fmt && yarn lint --fix",
"format-check": "dprint check",
"coverage": "jest --coverage --collectCoverageFrom={pages,src}/**/**"
},
"dependencies": {
"@node-oauth/oauth2-server": "^4.1.1",
"axios": "^0.24.0",
"memjs": "^1.3.0",
"next": "12.1.0",
"node-mocks-http": "^1.11.0",
"qrcode": "^1.5.0",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"babel-jest": "^27.5.1",
"dprint": "^0.27.1",
"eslint": "7.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-next": "12.0.3",
"eslint-plugin-jest": "^23.8.2",
"jest": "^27.5.1",
"jest-mock-axios": "^4.5.0",
"regenerator-runtime": "^0.13.9",
"start-server-and-test": "^1.14.0"
}
}