-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.77 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
{
"name": "BP",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"storybook": "start-storybook -p 6006 -c .storybook",
"test": "jest",
"accept snapshot": "npm test -- -u"
},
"keywords": [],
"author": "Alexander Lapygin <alexanderlapygin@gmail.com>",
"license": "MIT",
"dependencies": {
"@material-ui/core": "^4.6.1",
"@material-ui/icons": "^4.5.1",
"next": "^9.1.3",
"react": "^16.11.0",
"react-dom": "^16.11.0"
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@storybook/react": "^5.2.6",
"@types/jest": "^24.0.23",
"@types/next": "^8.0.7",
"@types/node": "^12.12.7",
"@types/react-test-renderer": "^16.9.1",
"@types/storybook__react": "^4.0.2",
"@zeit/next-typescript": "^1.1.1",
"babel-loader": "^8.0.6",
"babel-preset-react-app": "^9.0.2",
"fork-ts-checker-webpack-plugin": "^3.1.0",
"jest": "^24.9.0",
"react-test-renderer": "^16.11.0",
"ts-jest": "^24.1.0",
"typescript": "^3.7.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/"
],
"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"
}
}
}