This repository has been archived by the owner on Aug 27, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
92 lines (92 loc) · 2.36 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
90
91
92
{
"name": "next.js-typescript-starter-kit",
"version": "8.1.0",
"main": "index.js",
"repository": "https://github.com/deptno/next.js-typescript-starter-kit",
"author": "Bonggyun Lee <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"start:dev": "next",
"build:dev": "next build",
"build": "NODE_ENV=production next build",
"export": "next export",
"analyze": "NODE_ENV=production ANALYZE=true next build",
"start": "next start",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"ts:check": "tsc --noEmit"
},
"dependencies": {
"classnames": "^2.2.6",
"isomorphic-fetch": "^2.2.1",
"moment": "^2.22.2",
"next": "^8.1.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-ga": "^2.5.3",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-persist": "^4.9.1",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@types/classnames": "^2.2.6",
"@types/enzyme": "^3.1.10",
"@types/enzyme-adapter-react-16": "^1.0.2",
"@types/jest": "^24.0.11",
"@types/node": "^8.10.14",
"@types/react": "^16.7.13",
"@types/react-redux": "^6.0.0",
"@zeit/next-css": "^1.0.1",
"@zeit/next-typescript": "^1.1.1",
"babel-jest": "^24.7.1",
"babel-plugin-transform-define": "^1.3.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"jest": "^24.7.1",
"postcss": "^7.0.5",
"postcss-preset-env": "^6.0.10",
"ts-jest": "^24.0.2",
"typescript": "^3.4.5",
"webpack-bundle-analyzer": "^3.0.2"
},
"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/",
"enzyme.js"
],
"setupFilesAfterEnv": [
"<rootDir>/enzyme.js"
],
"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"
}
}
}