File tree 5 files changed +48
-4
lines changed
5 files changed +48
-4
lines changed Original file line number Diff line number Diff line change 9
9
"version" : " 0.1.0" ,
10
10
"private" : true ,
11
11
"scripts" : {
12
- "start" : " cross-env NODE_PATH=src react-scripts start" ,
13
- "build" : " cross-env NODE_PATH=src react-scripts build" ,
14
- "test" : " cross-env NODE_PATH=src react-scripts test" ,
15
- "eject" : " cross-env NODE_PATH=src react-scripts eject"
12
+ "start" : " react-scripts start" ,
13
+ "build" : " react-scripts build" ,
14
+ "test" : " react-scripts test" ,
15
+ "eject" : " react-scripts eject"
16
16
},
17
17
"dependencies" : {
18
18
"@sentry/browser" : " ^4.3.2" ,
45
45
"recompose" : " ^0.30.0" ,
46
46
"semantic-ui-react" : " ^0.84.0" ,
47
47
"serve" : " ^10.1.1" ,
48
+ "typescript" : " ^3.3.3" ,
48
49
"uuid" : " ^3.3.2"
49
50
},
50
51
"devDependencies" : {
61
62
"mobx-react-devtools" : " ^6.0.3" ,
62
63
"prettier" : " ^1.14.3"
63
64
},
65
+ "engines" : {
66
+ "node" : " 11.10.0"
67
+ },
64
68
"eslintConfig" : {
65
69
"extends" : " react-app"
66
70
},
Original file line number Diff line number Diff line change
1
+ /// <reference types="react-scripts" />
Original file line number Diff line number Diff line change
1
+ {
2
+ "extends" : " ./tsconfig.paths.json" ,
3
+ "compilerOptions" : {
4
+ "target" : " es5" ,
5
+ "lib" : [
6
+ " dom" ,
7
+ " dom.iterable" ,
8
+ " esnext"
9
+ ],
10
+ "allowJs" : true ,
11
+ "skipLibCheck" : true ,
12
+ "esModuleInterop" : true ,
13
+ "allowSyntheticDefaultImports" : true ,
14
+ "strict" : true ,
15
+ "forceConsistentCasingInFileNames" : true ,
16
+ "module" : " esnext" ,
17
+ "moduleResolution" : " node" ,
18
+ "resolveJsonModule" : true ,
19
+ "isolatedModules" : true ,
20
+ "noEmit" : true ,
21
+ "jsx" : " preserve"
22
+ },
23
+ "include" : [
24
+ " src"
25
+ ]
26
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "compilerOptions" : {
3
+ "baseUrl" : " ." ,
4
+ "paths" : {
5
+ "src/*" : [" src/*" ]
6
+ }
7
+ }
8
+ }
Original file line number Diff line number Diff line change @@ -10462,6 +10462,11 @@ typedarray@^0.0.6:
10462
10462
resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
10463
10463
integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=
10464
10464
10465
+ typescript@^3.3.3 :
10466
+ version "3.3.3"
10467
+ resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.3.3.tgz#f1657fc7daa27e1a8930758ace9ae8da31403221"
10468
+ integrity sha512-Y21Xqe54TBVp+VDSNbuDYdGw0BpoR/Q6wo/+35M8PAU0vipahnyduJWirxxdxjsAkS7hue53x2zp8gz7F05u0A==
10469
+
10465
10470
ua-parser-js@^0.7.18 :
10466
10471
version "0.7.19"
10467
10472
resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.19.tgz#94151be4c0a7fb1d001af7022fdaca4642659e4b"
You can’t perform that action at this time.
0 commit comments