-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.77 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
{
"name": "e-commerce-store",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p ${PORT:-\"3000\"}",
"migrateLocal": "dotenv ley",
"migrate": "ley",
"test": "dotenv ley down && dotenv ley up",
"cy": "cypress open",
"heroku-postbuild": "yarn migrate up && yarn build"
},
"dependencies": {
"@types/cypress": "^1.1.3",
"@types/jest": "^26.0.14",
"@types/js-cookie": "^2.2.6",
"camelcase-keys": "^6.2.2",
"dotenv": "^8.2.0",
"js-cookie": "^2.2.1",
"ley": "^0.6.0",
"next": "9.5.3",
"next-cookies": "^2.0.3",
"postgres": "^1.0.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-hook-form": "^5.7.2",
"react-number-format": "^4.4.1",
"react-select": "^3.1.0",
"styled-components": "^5.2.0"
},
"devDependencies": {
"@types/react": "16.9.51",
"@types/react-dom": "16.9.8",
"@types/styled-components": "^5.1.3",
"@typescript-eslint/eslint-plugin": "4.2.0",
"@typescript-eslint/parser": "4.2.0",
"@upleveled/eslint-config-upleveled": "^1.0.6",
"babel-eslint": "10.1.0",
"babel-plugin-styled-components": "^1.11.1",
"cypress": "^5.4.0",
"eslint": "6.8.0",
"eslint-config-react-app": "5.2.1",
"eslint-import-resolver-typescript": "2.3.0",
"eslint-plugin-cypress": "2.11.2",
"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.5.3",
"typescript": "4.0.3"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/cypress"
]
},
"cacheDirectories": [
".next/cache"
]
}