-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 2.92 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
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "fider",
"version": "0.0.0",
"repository": "https://github.com/getfider/fider",
"private": true,
"dependencies": {
"@lingui/react": "3.10.2",
"dompurify": "2.3.0",
"marked": "2.1.3",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-textarea-autosize": "8.3.3",
"react-toastify": "7.0.4"
},
"devDependencies": {
"@babel/core": "7.15.0",
"@babel/preset-env": "7.15.0",
"@babel/preset-react": "7.14.5",
"@babel/preset-typescript": "7.15.0",
"@cucumber/cucumber": "7.3.1",
"@lingui/cli": "3.10.2",
"@lingui/loader": "3.10.2",
"@lingui/macro": "3.10.2",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@types/debug": "4.1.7",
"@types/dompurify": "2.2.3",
"@types/jsdom": "16.2.13",
"@types/marked": "2.0.4",
"@types/node": "16.4.13",
"@types/react": "17.0.16",
"@types/react-dom": "17.0.9",
"@types/react-textarea-autosize": "4.3.6",
"@typescript-eslint/eslint-plugin": "4.29.1",
"@typescript-eslint/parser": "4.29.1",
"autoprefixer": "10.3.1",
"babel-jest": "^27.0.6",
"babel-loader": "8.2.2",
"babel-plugin-macros": "3.1.0",
"css-loader": "6.2.0",
"esbuild": "0.12.19",
"esbuild-plugin-babel": "0.2.3",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-react": "7.24.0",
"eslint-plugin-react-hooks": "4.2.0",
"fork-ts-checker-webpack-plugin": "6.3.2",
"isomorphic-fetch": "3.0.0",
"jest": "27.0.6",
"mini-css-extract-plugin": "2.2.0",
"playwright": "1.13.1",
"prettier": "2.3.2",
"purgecss-webpack-plugin": "4.0.3",
"sass": "1.37.5",
"sass-loader": "12.1.0",
"svg-sprite-loader": "6.0.9",
"typescript": "4.3.5",
"webpack": "5.50.0",
"webpack-bundle-analyzer": "4.4.2",
"webpack-cli": "4.7.2"
},
"lingui": {
"catalogs": [
{
"path": "<rootDir>/locale/{locale}/client",
"include": [
"<rootDir>"
]
}
],
"fallbackLocales": {
"default": "en"
},
"sourceLocale": "en",
"format": "minimal",
"locales": [
"pt-BR",
"fr",
"de",
"en"
]
},
"browserslist": ">1%, not dead",
"jest": {
"testEnvironment": "jsdom",
"transform": {
".+\\.(tsx|ts)?$": "babel-jest"
},
"setupFilesAfterEnv": [
"<rootDir>/public/jest.setup.tsx"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(ts|tsx|js|jsx)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"moduleNameMapper": {
".*\\.(png|scss|svg)$": "<rootDir>/public/jest.assets.ts",
"@fider/(.*)": "<rootDir>/public/$1",
"@locale/(.*)": "<rootDir>/locale/$1"
}
},
"engines": {
"npm": "7.x",
"node": "16.x"
},
"scripts": {
"heroku-postbuild": "make build-ssr && make build-ui"
}
}