forked from upleveled/next-js-example-may-2020
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1020 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "next-js-example-may-2020",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"heroku-postbuild": "yarn migrate up && yarn build",
"start": "next start -p ${PORT:-\"3000\"}",
"migrate": "dotenv ley",
"e2e": "cypress open",
"test": "jest"
},
"dependencies": {
"argon2": "^0.26.2",
"cookie": "^0.4.1",
"csrf": "^3.1.0",
"dotenv": "^8.2.0",
"dotenv-cli": "^3.1.0",
"js-cookie": "^2.2.1",
"ley": "^0.5.0",
"next": "10.2.3",
"next-cookies": "2.0.3",
"postgres": "^1.0.2",
"query-string": "^6.13.1",
"react": "16.13.1",
"react-dom": "16.13.1"
},
"devDependencies": {
"@types/jest": "^25.2.3",
"@types/react": "^16.9.36",
"babel-jest": "^26.0.1",
"cypress": "9.7.0",
"jest": "^26.0.1",
"typescript": "^3.9.5"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/cypress"
]
},
"resolutions": {
"**/cypress/lodash": "4.17.19"
}
}