-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.98 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.98 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
68
69
70
71
72
73
74
75
76
77
78
{
"name": "react-nextjs-ts-template",
"version": "1.0.0",
"main": "pages/index.js",
"license": "MIT",
"dependencies": {
"emotion-theming": "^10.0.10",
"next": "^8.1.0",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"lint": "./node_modules/.bin/eslint './components/**/*' --fix",
"typescript": "tsc",
"test": "jest"
},
"devDependencies": {
"@emotion/babel-preset-css-prop": "^10.0.9",
"@emotion/core": "^10.0.10",
"@emotion/styled": "^10.0.11",
"@types/jest": "^24.0.12",
"@types/next": "^8.0.4",
"@types/react": "^16.8.19",
"@types/react-dom": "^16.8.4",
"@typescript-eslint/eslint-plugin": "^1.7.0",
"@typescript-eslint/parser": "^1.7.0",
"@zeit/next-typescript": "^1.1.1",
"awesome-typescript-loader": "^5.2.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-emotion": "^10.0.7",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.6.0",
"global": "^4.3.2",
"jest": "^24.7.1",
"prettier": "^1.17.0",
"react-test-renderer": "^16.8.6",
"source-map-loader": "^0.2.4",
"ts-jest": "^24.0.2",
"typescript": "^3.4.5"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testMatch": [
"**/*.(test|spec).(ts|tsx)"
],
"globals": {
"ts-jest": {
"babelConfig": true,
"tsConfig": "jest.tsconfig.json"
}
},
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"coverageReporters": [
"json",
"lcov",
"text",
"text-summary"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/mocks.js",
"\\.(css|less)$": "<rootDir>/__mocks__/mocks.js"
}
}
}