-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
54 lines (54 loc) · 1.44 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": "cypress-nextjs-auth0",
"version": "2.1.0",
"description": "Cypress commands to support Auth0 and Next.js.",
"source": "src/index.js",
"main": "dist/cypress-nextjs-auth0.js",
"types": "types/index.d.ts",
"files": [
"encrypt.js",
"dist",
"types"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "microbundle build -f cjs",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"cy:info": "cypress info",
"cy:verify": "cypress verify",
"dev": "next dev cypress/dummy",
"format": "prettier \"./**/*.(js|jsx|md)\" --write",
"lint": "prettier \"./**/*.(js|jsx|md)\" --check",
"prepare": "is-ci || husky install",
"release": "release-it",
"test:headless": "cypress run",
"test:ui": "cypress open"
},
"author": "",
"license": "MIT",
"dependencies": {
"auth0-js": "^9.19.0",
"cookie": "^0.4.2",
"futoin-hkdf": "^1.4.3",
"jose": "^2.0.5"
},
"devDependencies": {
"@auth0/nextjs-auth0": "^1.7.0",
"@testing-library/cypress": "^8.0.2",
"all-contributors-cli": "^6.20.0",
"cypress": "^9.4.1",
"dotenv": "^16.0.0",
"husky": "^7.0.4",
"is-ci": "^3.0.1",
"isomorphic-unfetch": "^3.1.0",
"microbundle": "^0.14.2",
"next": "^12.0.10",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"release-it": "^14.12.4"
}
}