-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.34 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "gaming-store",
"version": "1.0.0",
"description": "A web application for a gaming store.",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"build": "next build",
"cy:ci": "start-server-and-test start http://localhost:3000 cy:run",
"cy:open": "cypress open",
"cy:run": "cypress run",
"dev": "next dev",
"format": "prettier --write \"*.{js,jsx,ts,tsx,json}\"",
"lint": "eslint --cache --fix \"*.{js,jsx,ts,tsx}\"",
"pck:check": "ncu",
"pck:update": "ncu -u",
"start": "next start",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/9andresc/gaming-store.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/9andresc/gaming-store/issues"
},
"homepage": "https://github.com/9andresc/gaming-store#readme",
"dependencies": {
"axios": "0.21.0",
"next": "10.0.2",
"react": "17.0.1",
"react-dom": "17.0.1",
"sanitize.css": "12.0.1",
"styled-components": "5.2.1"
},
"devDependencies": {
"@testing-library/dom": "7.28.1",
"@testing-library/jest-dom": "5.11.6",
"@testing-library/react": "11.2.2",
"@types/jest": "26.0.15",
"@types/node": "14.14.7",
"@types/react": "16.9.56",
"@types/styled-components": "5.1.4",
"@typescript-eslint/eslint-plugin": "4.8.1",
"@typescript-eslint/parser": "4.7.0",
"axe-core": "4.0.2",
"babel-jest": "26.6.3",
"babel-plugin-styled-components": "1.11.1",
"cypress": "5.6.0",
"cypress-axe": "0.10.0",
"dotenv": "8.2.0",
"eslint": "7.14.0",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-react": "7.21.5",
"eslint-plugin-react-hooks": "4.2.0",
"husky": "4.3.0",
"jest": "26.6.3",
"jest-dom": "4.0.0",
"lint-staged": "10.5.1",
"msw": "0.22.1",
"node-mocks-http": "1.9.0",
"npm-check-updates": "10.2.2",
"prettier": "2.2.0",
"start-server-and-test": "1.11.6",
"typescript": "4.1.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --cache --fix",
"git add"
],
"*.{js,jsx,ts,tsx,json}": [
"prettier --write",
"git add"
]
}
}