forked from getfider/fider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.73 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
{
"name": "fider",
"version": "0.0.0",
"repository": "https://github.com/getfider/fider",
"private": true,
"dependencies": {
"markdown-it": "8.4.1",
"react": "16.3.2",
"react-dom": "16.3.2",
"react-textarea-autosize": "6.1.0",
"react-toastify": "4.0.0-rc.5",
"semantic-ui-css": "2.2.14",
"semantic-ui-react": "0.79.1"
},
"devDependencies": {
"@types/jest": "22.2.3",
"@types/jsdom": "^11.0.4",
"@types/markdown-it": "0.0.4",
"@types/node": "9.6.7",
"@types/react": "16.3.13",
"@types/react-dom": "16.0.5",
"@types/react-textarea-autosize": "4.3.2",
"@types/selenium-webdriver": "3.0.8",
"chromedriver": "2.38.2",
"css-loader": "0.28.11",
"dotenv": "5.0.1",
"file-loader": "1.1.11",
"jest": "22.4.3",
"mini-css-extract-plugin": "0.4.0",
"node-sass": "4.9.0",
"prettier": "1.12.1",
"reflect-metadata": "0.1.12",
"sass-loader": "7.0.1",
"selenium-webdriver": "3.6.0",
"ts-jest": "22.4.4",
"ts-loader": "4.2.0",
"tslint": "5.9.1",
"tslint-config-prettier": "1.12.0",
"tslint-plugin-prettier": "1.3.0",
"tslint-react": "3.5.1",
"typescript": "2.8.3",
"webpack": "4.6.0",
"webpack-clean-obsolete-chunks": "0.4.0",
"webpack-cli": "2.0.15"
},
"jest": {
"transform": {
"^.+\\.(tsx|ts)?$": "ts-jest"
},
"setupTestFrameworkScriptFile": "<rootDir>/public/jest.setup.ts",
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(ts|tsx|js|jsx)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"moduleNameMapper": {
"^.*\\.(png|scss)$": "<rootDir>/public/jest.assets.ts",
"@fider/(.*)": "<rootDir>/public/$1"
}
}
}