-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
124 lines (124 loc) · 3.34 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
116
117
118
119
120
121
122
123
124
{
"name": "big-silver",
"version": "0.1.0",
"private": true,
"dependencies": {
"@babel/core": "7.0.0-beta.46",
"@babel/runtime": "7.0.0-beta.46",
"@types/react-big-calendar": "^0.24.0",
"babel-core": "^6.26.3",
"babel-jest": "^22.4.3",
"babel-plugin-emotion": "^9.2.11",
"babel-preset-react-app": "^3.1.1",
"bootstrap": "^4.4.1",
"browserslist": "2.11.3",
"chalk": "2.3.0",
"connected-react-router": "^4.5.0",
"dotenv-expand": "^4.2.0",
"emotion": "^9.2.12",
"emotion-theming": "^9.2.9",
"eslint": "4.18.2",
"express": "^4.16.3",
"find-pkg": "1.0.0",
"fs-extra": "5.0.0",
"globby": "^8.0.1",
"graphql": "0.12.3",
"graphql-tag": "^2.9.2",
"history": "^4.7.2",
"http2": "^3.3.7",
"inquirer": "5.0.0",
"jest": "22.4.1",
"moment": "^2.22.2",
"parcel-bundler": "^1.8.1",
"pkg-up": "2.0.0",
"polished": "^2.3.0",
"react": "^16.6.0",
"react-big-calendar": "^0.24.0",
"react-dev-utils": "^5.0.0",
"react-dom": "^16.6.0",
"react-emotion": "^9.2.12",
"react-redux": "^5.1.0",
"react-router-dom": "^4.3.1",
"react-scripts-ts": "^3.1.0",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.5",
"redux-saga": "^0.16.2",
"typeface-ibm-plex-mono": "^0.0.61",
"typeface-ibm-plex-sans": "^0.0.61",
"typesafe-actions": "^2.0.4"
},
"scripts": {
"start": "npm run lint && node scripts/start.js",
"lint": "tslint --project ./tsconfig.json --fix src/**/**/*.ts src/**/**/*.tsx",
"build": "node scripts/build.js",
"test": "node scripts/test.js --env=jsdom"
},
"devDependencies": {
"@types/history": "^4.7.2",
"@types/node": "^10.12.0",
"@types/react": "^16.4.18",
"@types/react-dom": "^16.0.9",
"@types/react-redux": "^6.0.9",
"@types/react-router-dom": "^4.3.1",
"@types/react-router-redux": "^5.0.16",
"@types/redux": "^3.6.0",
"babel-core": "^6.26.3",
"reactstrap": "^6.5.0",
"tslint": "^5.11.0",
"tslint-config-blvd": "^1.2.1",
"typescript": "^3.1.3"
},
"browserslist": {
"development": [
"last 2 chrome versions",
"last 2 firefox versions",
"last 2 edge versions"
],
"production": [
">1%",
"last 4 versions",
"Firefox ESR",
"not ie < 11"
]
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,mjs}"
],
"setupFiles": [
"<rootDir>/config/polyfills.js"
],
"testMatch": [
"**/__tests__/**/*.{js,jsx,mjs}",
"**/?(*.)(spec|test).{js,jsx,mjs}"
],
"roots": [
"<rootDir>/src"
],
"testEnvironment": "node",
"testURL": "http://localhost",
"transform": {
"^.+\\.(js|jsx|mjs)$": "<rootDir>/config/jest/babelTransform.js",
"^.+\\.css$": "<rootDir>/config/jest/cssTransform.js",
"^.+\\.(graphql)$": "<rootDir>/config/jest/graphqlTransform.js",
"^(?!.*\\.(js|jsx|mjs|css|json|graphql)$)": "<rootDir>/config/jest/fileTransform.js"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx|mjs)$",
"^.+\\.module\\.css$"
],
"moduleNameMapper": {
"^react-native$": "react-native-web",
"^.+\\.module\\.css$": "identity-obj-proxy"
},
"moduleFileExtensions": [
"web.js",
"mjs",
"js",
"json",
"web.jsx",
"jsx",
"node"
]
}
}