-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.46 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
{
"name": "github-battle-hooks",
"version": "1.0.0",
"description": "github battle",
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties",
"syntax-dynamic-import"
]
},
"keywords": [],
"author": "Yuri Ramos",
"license": "MIT",
"dependencies": {
"next": "^12.0.5",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^3.7.0"
},
"devDependencies": {
"@types/react": "^17.0.37",
"typescript": "^4.5.2"
},
"jest": {
"verbose": true,
"testURL": "http://localhost/",
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js"
},
"transformIgnorePatterns": [
"/node_modules/",
"/my-custom-transform/"
],
"testEnvironment": "jsdom",
"collectCoverage": true,
"collectCoverageFrom": [
"app/**/*.{js, ts,tsx, jsx}",
"!app/index.js",
"!app/useAppHandler.js"
],
"reporters": [
"default"
],
"automock": false,
"setupFiles": [
"./setupTests.js"
],
"transform": {
"\\.jsx?$": "babel-jest",
"\\.(css|less|sass|scss)$": "<rootDir>/__mocks__/styleMock.js"
}
}
}