-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.19 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
93
94
95
96
97
98
99
100
101
102
{
"name": "wiser",
"description": "Projeto de autenticação desenvolvido para a Wiser",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest --watch --env=jsdom",
"test:prd": "jest --env=jsdom",
"storybook": "start-storybook"
},
"dependencies": {
"axios": "^0.19.2",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"next": "10.0.6",
"next-compose-plugins": "^2.2.1",
"next-images": "^1.7.0",
"next-plugin-custom-babel-config": "^1.0.4",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-redux": "^7.2.0",
"redux": "^4.0.5",
"redux-saga": "^1.1.3",
"styled-components": "^5.2.1",
"typesafe-actions": "^5.1.0"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.12.13",
"@storybook/addon-actions": "^6.1.11",
"@storybook/addon-docs": "^6.1.11",
"@storybook/addon-knobs": "^6.1.11",
"@storybook/addon-links": "^6.1.11",
"@storybook/addon-viewport": "^6.1.11",
"@storybook/addons": "^6.1.11",
"@storybook/preset-create-react-app": "^3.1.5",
"@storybook/preset-typescript": "^3.0.0",
"@storybook/react": "^6.1.11",
"@types/enzyme": "^3.10.8",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.25",
"@types/react": "^17.0.1",
"@types/react-redux": "^7.1.16",
"@types/styled-components": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/eslint-plugin-tslint": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-plugin-jsx-control-statements": "^4.0.0",
"babel-plugin-react-remove-properties": "^0.3.0",
"babel-plugin-styled-components": "^1.10.7",
"babel-preset-react-app": "^10.0.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jsx-control-statements": "^2.2.1",
"jest": "^26.6.3",
"jest-styled-components": "^7.0.3",
"jsx-control-statements": "^3.2.8",
"prettier": "^2.2.1",
"ts-jest": "^26.5.1",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"typescript": "^4.1.5"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"testRegex": "/__tests__/.*\\.(ts|tsx|js)$",
"moduleNameMapper": {
"^@wiser/components/(.*)$": "<rootDir>/components/$1",
"^@wiser/utils/(.*)$": "<rootDir>/core/utils/$1",
"^@wiser/utils": "<rootDir>/core/utils",
"^@wiser/assets(.*)$": "<rootDir>/assets/$1"
},
"transform": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/fileTransformer.js",
"^.+\\.tsx?$": "babel-jest"
},
"coveragePathIgnorePatterns": [
"<rootDir>/node_modules/(?!@foo)"
],
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.json",
"enableTsDiagnostics": true
}
}
}
}