-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.01 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
{
"name": "@borekb/gatsby-starter-mobx",
"description": "Gatsby starter with MobX and TypeScript",
"version": "1.0.0",
"author": "Borek Bernard <borekb@gmail.com>",
"license": "MIT",
"scripts": {
"electron": "electron main.js",
"start": "webpack-dev-server",
"build": "webpack",
"watch": "webpack --watch",
"test": "jest",
"test:update": "jest --updateSnapshot",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tonchan1216/WDR-frontend.git"
},
"dependencies": {
"@types/react": "^16.9.5",
"@types/react-dom": "^16.9.1",
"@types/react-native": "^0.60.21",
"@types/styled-components": "^4.1.19",
"electron": "^7.0.0",
"loadash": "^1.0.0",
"mobx": "^5.14.0",
"mobx-react": "^6.1.3",
"node-fetch": "^2.6.0",
"react": "^16.10.1",
"react-dom": "^16.10.1",
"styled-components": "^4.4.0"
},
"devDependencies": {
"@types/jest": "^23.3.9",
"@types/react-test-renderer": "^16.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.6.0",
"prettier": "1.15.2",
"react-test-renderer": "^16.6.3",
"ts-jest": "^23.10.5",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.16.0",
"tslint-react": "^3.6.0"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*\\.([tj]sx?)|(\\.|/)(test|spec))\\.([tj]sx?)$",
"moduleNameMapper": {
".+\\.(css|styl|less|sass|scss)$": "identity-obj-proxy",
".+\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/jest/__mocks__/fileMock.js"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"testPathIgnorePatterns": [
"node_modules",
".cache"
],
"transformIgnorePatterns": [
"node_modules/(?!(gatsby)/)"
],
"globals": {
"__PATH_PREFIX__": ""
},
"setupFiles": [
"<rootDir>/jest/loadershim.js"
]
}
}