forked from getfider/fider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.33 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
{
"name": "fider",
"version": "0.0.0",
"repository": "https://github.com/getfider/fider",
"private": true,
"dependencies": {
"dompurify": "2.2.7",
"marked": "2.0.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "4.2.0",
"react-textarea-autosize": "8.3.2",
"react-toastify": "7.0.3",
"tslib": "2.2.0"
},
"devDependencies": {
"@types/dompurify": "2.2.1",
"@types/enzyme": "3.10.8",
"@types/jest": "26.0.22",
"@types/jsdom": "16.2.10",
"@types/marked": "2.0.1",
"@types/node": "14.14.37",
"@types/puppeteer": "5.4.3",
"@types/react": "17.0.3",
"@types/react-dom": "17.0.3",
"@types/react-textarea-autosize": "4.3.5",
"@typescript-eslint/eslint-plugin": "4.21.0",
"@typescript-eslint/parser": "4.21.0",
"@wojtekmaj/enzyme-adapter-react-17": "0.6.1",
"autoprefixer": "10.2.5",
"css-loader": "5.2.1",
"dotenv": "8.2.0",
"enzyme": "3.11.0",
"esbuild": "0.11.6",
"eslint": "7.23.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-react": "7.23.2",
"eslint-plugin-react-hooks": "4.2.0",
"file-loader": "6.2.0",
"fork-ts-checker-webpack-plugin": "6.2.1",
"jest": "26.6.3",
"mini-css-extract-plugin": "1.4.1",
"node-sass": "5.0.0",
"prettier": "2.2.1",
"puppeteer": "8.0.0",
"reflect-metadata": "0.1.13",
"sass-loader": "11.0.1",
"ts-jest": "26.5.4",
"ts-loader": "8.1.0",
"typescript": "4.2.4",
"webpack": "5.31.0",
"webpack-bundle-analyzer": "4.4.0",
"webpack-cli": "4.6.0"
},
"jest": {
"globals": {
"ts-jest": {
"diagnostics": {
"ignoreCodes": [
"TS6133"
]
}
}
},
"transform": {
"^.+\\.(tsx|ts)?$": "ts-jest"
},
"setupFilesAfterEnv": [
"<rootDir>/public/jest.setup.ts"
],
"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"
}
},
"engines": {
"npm": "7.x",
"node": "14.x"
},
"scripts": {
"heroku-postbuild": "make build-ssr && make build-ui"
}
}