-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.37 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
{
"name": "next-js-e-commerce-store",
"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"
},
"dependencies": {
"@emotion/core": "^10.0.35",
"dotenv": "^8.2.0",
"dotenv-cli": "^4.0.0",
"js-cookie": "^2.2.1",
"ley": "^0.6.0",
"next": "9.5.5",
"next-cookies": "^2.0.3",
"postgres": "^1.0.2",
"react": "16.13.1",
"react-dom": "16.13.1"
},
"devDependencies": {
"@types/js-cookie": "^2.2.6",
"@types/react": "16.8.24",
"@types/react-dom": "16.0.5",
"@typescript-eslint/eslint-plugin": "4.2.0",
"@typescript-eslint/parser": "4.2.0",
"@upleveled/eslint-config-upleveled": "^1.0.4",
"babel-eslint": "10.1.0",
"cypress": "^5.5.0",
"eslint": "6.6.0",
"eslint-config-react-app": "5.2.1",
"eslint-plugin-cypress": "2.11.1",
"eslint-plugin-flowtype": "4.7.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jest": "24.0.0",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-react": "7.20.3",
"eslint-plugin-react-hooks": "4.0.8",
"jest": "^26.6.1",
"typescript": "4.0.3"
},
"cacheDirectories": [
".next/cache"
],
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/cypress"
]
}
}