-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.89 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.89 KB
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
{
"name": "marvel-characters",
"version": "1.0.0",
"private": true,
"dependencies": {
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@material-ui/lab": "^4.0.0-alpha.61",
"@material-ui/styles": "^4.11.5",
"crypto-js": "^4.2.0",
"next": "^12.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^5.3.5",
"uuid": "^9.0.0"
},
"scripts": {
"dev": "next dev",
"start": "next start",
"build": "next build",
"test": "jest --watch",
"test:ci": "jest --ci",
"lint": "next lint",
"prettify": "prettier --write src/**/*.{json,ts,tsx} && prettier --write *.{json,ts,tsx}",
"prepare": "husky install",
"placeholder": "echo \"command placeholder\""
},
"lint-staged": {
"src/**/*.{tsx,ts}": [
"pnpm run lint",
"pnpm run prettify",
"git add ./src"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.4.3",
"@types/crypto-js": "^4.1.1",
"@types/jest": "^29.0.0",
"@types/node": "^18.7.14",
"@types/react": "^18.0.18",
"@types/react-dom": "^18.0.6",
"@types/styled-components": "^5.1.26",
"@types/uuid": "^8.3.4",
"eslint": "8.22.0",
"eslint-config-next": "12.2.5",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-testing-library": "^5.6.2",
"husky": "^8.0.1",
"jest": "^29.0.2",
"jest-environment-jsdom": "^29.0.2",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"typescript": "^4.8.2"
},
"repository": {
"type": "git",
"directory": ".",
"url": "git+ssh://git@github.com/dennervidal/marvel-characters.git"
},
"bugs": {
"url": "https://github.com/dennervidal/marvel-characters/issues"
},
"homepage": "https://dennervidal.github.io/marvel-characters/"
}