-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfile_name.json
2895 lines (2895 loc) · 99.8 KB
/
file_name.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"title": "[숨고] Data Engineer",
"company_name": "(주)브레이브모바일",
"detail_url": "https://www.theteams.kr/recruit/wanted/29747",
"end_date": null,
"platform_name": "theteams",
"category_name": "데이터 사이언스",
"stack": null,
"region": null,
"career": null
},
{
"title": "[숨고] Business Data Analyst",
"company_name": "(주)브레이브모바일",
"detail_url": "https://www.theteams.kr/recruit/wanted/25197",
"end_date": null,
"platform_name": "theteams",
"category_name": "데이터 사이언스",
"stack": null,
"region": null,
"career": null
},
{
"title": "풍부한 경험의 \"데이터 엔지니어(빅데이터)\" 를 모십니다.",
"company_name": "(주)광개토연구소",
"detail_url": "https://www.theteams.kr/recruit/wanted/25470",
"end_date": null,
"platform_name": "theteams",
"category_name": "머신러닝/빅데이터",
"stack": null,
"region": null,
"career": null
},
{
"title": "[MK CREATIVE] 데이터 분석 마케터",
"company_name": "MK CREATIVE",
"detail_url": "https://www.theteams.kr/recruit/wanted/673895",
"end_date": null,
"platform_name": "theteams",
"category_name": "퍼포먼스 마케팅",
"stack": null,
"region": null,
"career": null
},
{
"title": "수공에서 데이터 엔지니어를 찾습니다!",
"company_name": "수공 SOOGONG",
"detail_url": "https://www.theteams.kr/recruit/wanted/593494",
"end_date": null,
"platform_name": "theteams",
"category_name": "웹 백엔드",
"stack": null,
"region": null,
"career": null
},
{
"title": "업템포와 함께 혁신을 만들어갈 IT 인재 모집합니다 풀스택(프론트/백)개발자/개발PM",
"company_name": "(주)업템포글로벌",
"detail_url": "https://www.theteams.kr/recruit/wanted/593167",
"end_date": null,
"platform_name": "theteams",
"category_name": "웹 프론트엔드",
"stack": null,
"region": null,
"career": null
},
{
"title": "[주식회사 주택] 데이터 엔지니어 채용",
"company_name": "주식회사 주택",
"detail_url": "https://www.theteams.kr/recruit/wanted/390063",
"end_date": null,
"platform_name": "theteams",
"category_name": "머신러닝/빅데이터",
"stack": null,
"region": null,
"career": null
},
{
"title": "Data Scientist",
"company_name": "(주)뉴포트파트너스",
"detail_url": "https://www.theteams.kr/recruit/wanted/26262",
"end_date": null,
"platform_name": "theteams",
"category_name": "머신러닝/빅데이터",
"stack": null,
"region": null,
"career": null
},
{
"title": "업템포와 함께 혁신을 만들어갈 IT 인재 모집 - 프론트/백엔드, 풀스택 개발자/PM",
"company_name": "(주)업템포글로벌",
"detail_url": "https://www.theteams.kr/recruit/wanted/589112",
"end_date": null,
"platform_name": "theteams",
"category_name": "웹 프론트엔드",
"stack": null,
"region": null,
"career": null
},
{
"title": "[OPGG] 백엔드 개발자",
"company_name": "(주)더라이징스타헤딩",
"detail_url": "https://www.theteams.kr/recruit/wanted/26172",
"end_date": null,
"platform_name": "theteams",
"category_name": "웹 백엔드",
"stack": null,
"region": null,
"career": null
},
{
"title": "[OPGG] 프론트엔드 개발자",
"company_name": "(주)더라이징스타헤딩",
"detail_url": "https://www.theteams.kr/recruit/wanted/26171",
"end_date": null,
"platform_name": "theteams",
"category_name": "웹 프론트엔드",
"stack": null,
"region": null,
"career": null
},
{
"title": "일레클의 '프레임'이 되어주실 백엔드 엔지니어를 찾습니다.",
"company_name": "나인투원",
"detail_url": "https://www.theteams.kr/recruit/wanted/26069",
"end_date": null,
"platform_name": "theteams",
"category_name": "서버",
"stack": null,
"region": null,
"career": null
},
{
"title": "[쿼드마이너] python개발자",
"company_name": "(주)더라이징스타헤딩",
"detail_url": "https://www.theteams.kr/recruit/wanted/26020",
"end_date": null,
"platform_name": "theteams",
"category_name": "웹 백엔드",
"stack": null,
"region": null,
"career": null
},
{
"title": "에이미파이에서 프론트엔드 개발자를 채용합니다.",
"company_name": "에이미파이(AimyPie)",
"detail_url": "https://www.theteams.kr/recruit/wanted/747226",
"end_date": null,
"platform_name": "theteams",
"category_name": "웹 프론트엔드",
"stack": null,
"region": null,
"career": null
},
{
"title": "(주)파스토에서 DBA를 찾습니다!",
"company_name": "(주)파스토",
"detail_url": "https://www.theteams.kr/recruit/wanted/593166",
"end_date": null,
"platform_name": "theteams",
"category_name": "기타",
"stack": null,
"region": null,
"career": null
},
{
"title": "[그린랩스] 웹 백엔드 개발자 채용",
"company_name": "그린랩스",
"detail_url": "https://www.theteams.kr/recruit/wanted/313954",
"end_date": null,
"platform_name": "theteams",
"category_name": "웹 백엔드",
"stack": null,
"region": null,
"career": null
},
{
"title": "(주)파스토에서 백엔드 개발자를 찾습니다!",
"company_name": "(주)파스토",
"detail_url": "https://www.theteams.kr/recruit/wanted/593165",
"end_date": null,
"platform_name": "theteams",
"category_name": "웹 백엔드",
"stack": null,
"region": null,
"career": null
},
{
"title": "[병역특례 가능] 생체신호 처리 및 분석 인공지능(AI) 엔지니어 모집",
"company_name": "(주)엑소시스템즈",
"detail_url": "https://www.theteams.kr/recruit/wanted/576465",
"end_date": null,
"platform_name": "theteams",
"category_name": "머신러닝/빅데이터",
"stack": null,
"region": null,
"career": null
},
{
"title": "“초고속 성장하고 있는 기업”의 로켓에 탑승할 IT 개발 사업 팀원 모집합니다.",
"company_name": "(주)업템포글로벌",
"detail_url": "https://www.theteams.kr/recruit/wanted/1409825",
"end_date": null,
"platform_name": "theteams",
"category_name": "기타",
"stack": null,
"region": null,
"career": null
},
{
"title": "탈모컨시어지브랜드, 리필드를 함께 성장할 \"퍼포먼스 마케터(주니어)\" 를 모십니다!",
"company_name": "(주) 콘스탄트",
"detail_url": "https://www.theteams.kr/recruit/wanted/555204",
"end_date": null,
"platform_name": "theteams",
"category_name": "퍼포먼스 마케팅",
"stack": null,
"region": null,
"career": null
},
{
"title": "[숨고] Product Owner",
"company_name": "(주)브레이브모바일",
"detail_url": "https://www.theteams.kr/recruit/wanted/25195",
"end_date": null,
"platform_name": "theteams",
"category_name": "서비스기획",
"stack": null,
"region": null,
"career": null
},
{
"title": "백엔드 개발자(인턴십)",
"company_name": "AX(액스)",
"detail_url": "https://www.theteams.kr/recruit/wanted/1387041",
"end_date": null,
"platform_name": "theteams",
"category_name": "웹 백엔드",
"stack": null,
"region": null,
"career": null
},
{
"title": "[EcubeLabs(이큐브랩)] Jr. Full-stack Engineer",
"company_name": "EcubeLabs",
"detail_url": "https://www.theteams.kr/recruit/wanted/1258597",
"end_date": null,
"platform_name": "theteams",
"category_name": "웹 백엔드",
"stack": null,
"region": null,
"career": null
},
{
"title": "퍼포먼스 마케터",
"company_name": "이코니크(ICONIQUEsCo.Ltd.)",
"detail_url": "https://www.theteams.kr/recruit/wanted/48321",
"end_date": null,
"platform_name": "theteams",
"category_name": "퍼포먼스 마케팅",
"stack": null,
"region": null,
"career": null
},
{
"title": "그라인더 프로덕트 디자이너 채용",
"company_name": "(주)그라인더",
"detail_url": "https://www.theteams.kr/recruit/wanted/1097030",
"end_date": null,
"platform_name": "theteams",
"category_name": "UX/UI 디자인",
"stack": null,
"region": null,
"career": null
},
{
"title": "태거스 솔루션의 코어를 개발하는 PHP 백엔드 개발자",
"company_name": "(주)태거스",
"detail_url": "https://www.theteams.kr/recruit/wanted/3591",
"end_date": null,
"platform_name": "theteams",
"category_name": "웹 백엔드",
"stack": null,
"region": null,
"career": null
},
{
"title": "라이프플래닝연구소에서 ios 개발자를 찾습니다!",
"company_name": "㈜라이프플래닝연구소",
"detail_url": "https://www.theteams.kr/recruit/wanted/615657",
"end_date": null,
"platform_name": "theteams",
"category_name": "iOS",
"stack": null,
"region": null,
"career": null
},
{
"title": "라이프플래닝연구소에서 UI/UX,BUI 디자이너를 찾습니다!",
"company_name": "㈜라이프플래닝연구소",
"detail_url": "https://www.theteams.kr/recruit/wanted/615659",
"end_date": null,
"platform_name": "theteams",
"category_name": "UX/UI 디자인",
"stack": null,
"region": null,
"career": null
},
{
"title": "[뷰메진]백엔드 엔지니어를 찾습니다! (경력 3년↑)",
"company_name": "주식회사 뷰메진",
"detail_url": "https://www.theteams.kr/recruit/wanted/1403801",
"end_date": null,
"platform_name": "theteams",
"category_name": "웹 백엔드",
"stack": null,
"region": null,
"career": null
},
{
"title": "살아있는 서비스를 운영할 앱마케터(인턴) 구인 합니다",
"company_name": "블랙탠저린",
"detail_url": "https://www.theteams.kr/recruit/wanted/1658894",
"end_date": null,
"platform_name": "theteams",
"category_name": "브랜드 마케팅",
"stack": null,
"region": null,
"career": null
},
{
"title": "기업부설연구소 플랫폼 개발 및 빅데이터 분석 연구원을 찾습니다",
"company_name": "(주) 에스앤이컴퍼니",
"detail_url": "https://www.theteams.kr/recruit/wanted/1502991",
"end_date": null,
"platform_name": "theteams",
"category_name": "머신러닝/빅데이터",
"stack": null,
"region": null,
"career": null
},
{
"title": "고속 성장 스타트업 업템포에서 실력 있는 프론트엔드, 백엔드 개발자님들을 모십니다.",
"company_name": "(주)업템포글로벌",
"detail_url": "https://www.theteams.kr/recruit/wanted/593486",
"end_date": null,
"platform_name": "theteams",
"category_name": "웹 프론트엔드",
"stack": null,
"region": null,
"career": null
},
{
"title": "M&A Strategy RA",
"company_name": "에스티씨랩",
"detail_url": "https://www.theteams.kr/recruit/wanted/2482760",
"end_date": null,
"platform_name": "theteams",
"category_name": "전략/사업개발",
"stack": null,
"region": null,
"career": null
},
{
"title": "고속 성장 스타트업 업템포에서 실력 있는 프론트엔드, 백엔드 개발자님들을 모십니다.",
"company_name": "(주)업템포글로벌",
"detail_url": "https://www.theteams.kr/recruit/wanted/593486",
"end_date": null,
"platform_name": "theteams",
"category_name": "웹 프론트엔드",
"stack": null,
"region": null,
"career": null
},
{
"title": "살아있는 서비스를 운영할 앱마케터(인턴) 구인 합니다",
"company_name": "블랙탠저린",
"detail_url": "https://www.theteams.kr/recruit/wanted/1658894",
"end_date": null,
"platform_name": "theteams",
"category_name": "브랜드 마케팅",
"stack": null,
"region": null,
"career": null
},
{
"title": "기업부설연구소 플랫폼 개발 및 빅데이터 분석 연구원을 찾습니다",
"company_name": "(주) 에스앤이컴퍼니",
"detail_url": "https://www.theteams.kr/recruit/wanted/1502991",
"end_date": null,
"platform_name": "theteams",
"category_name": "머신러닝/빅데이터",
"stack": null,
"region": null,
"career": null
},
{
"title": "[뷰메진]백엔드 엔지니어를 찾습니다! (경력 3년↑)",
"company_name": "주식회사 뷰메진",
"detail_url": "https://www.theteams.kr/recruit/wanted/1403801",
"end_date": null,
"platform_name": "theteams",
"category_name": "웹 백엔드",
"stack": null,
"region": null,
"career": null
},
{
"title": "슈가힐에서 프로젝트 매니저를 찾습니다",
"company_name": "(주)슈가힐",
"detail_url": "https://www.theteams.kr/recruit/wanted/596521",
"end_date": null,
"platform_name": "theteams",
"category_name": "기타",
"stack": null,
"region": null,
"career": null
},
{
"title": "2월대개봉에서 프론트엔드 개발자를 찾습니다!",
"company_name": "(주)2월대개봉",
"detail_url": "https://www.theteams.kr/recruit/wanted/615132",
"end_date": null,
"platform_name": "theteams",
"category_name": "웹 프론트엔드",
"stack": null,
"region": null,
"career": null
},
{
"title": "살아있는 서비스를 함께 운영할 든든한 PM님을 모집합니다!",
"company_name": "블랙탠저린",
"detail_url": "https://www.theteams.kr/recruit/wanted/736324",
"end_date": null,
"platform_name": "theteams",
"category_name": "기타",
"stack": null,
"region": null,
"career": null
},
{
"title": "백엔드 엔지니어",
"company_name": "트리플",
"detail_url": "https://www.theteams.kr/recruit/wanted/877671",
"end_date": null,
"platform_name": "theteams",
"category_name": "웹 백엔드",
"stack": null,
"region": null,
"career": null
},
{
"title": "(Audit) Global Sales Manager",
"company_name": "수호아이오",
"detail_url": "https://www.theteams.kr/recruit/wanted/1005051",
"end_date": null,
"platform_name": "theteams",
"category_name": "글로벌 영업",
"stack": null,
"region": null,
"career": null
},
{
"title": "살아있는 서비스를 운영할 앱마케터(경력) 구인합니다",
"company_name": "블랙탠저린",
"detail_url": "https://www.theteams.kr/recruit/wanted/740190",
"end_date": null,
"platform_name": "theteams",
"category_name": "브랜드 마케팅",
"stack": null,
"region": null,
"career": null
},
{
"title": "퍼포먼스/그로스 마케터를 모집합니다!",
"company_name": "주식회사 바이비",
"detail_url": "https://www.theteams.kr/recruit/wanted/1069181",
"end_date": null,
"platform_name": "theteams",
"category_name": "퍼포먼스 마케팅",
"stack": null,
"region": null,
"career": null
},
{
"title": "업템포(UPTEMPO)에서 B2B 영업 및 SI&IT 개발 영업 인재를 대규모 채용합니다",
"company_name": "(주)업템포글로벌",
"detail_url": "https://www.theteams.kr/recruit/wanted/1184520",
"end_date": null,
"platform_name": "theteams",
"category_name": "B2B 영업",
"stack": null,
"region": null,
"career": null
},
{
"title": "[EcubeLabs(이큐브랩)] Sr. Back-end Engineer",
"company_name": "EcubeLabs",
"detail_url": "https://www.theteams.kr/recruit/wanted/1258962",
"end_date": null,
"platform_name": "theteams",
"category_name": "웹 백엔드",
"stack": null,
"region": null,
"career": null
},
{
"title": "[EcubeLabs(이큐브랩)] Sr. SRE/DevOps Engineer",
"company_name": "EcubeLabs",
"detail_url": "https://www.theteams.kr/recruit/wanted/1258965",
"end_date": null,
"platform_name": "theteams",
"category_name": "서버",
"stack": null,
"region": null,
"career": null
},
{
"title": "[EcubeLabs(이큐브랩)] Sr. Front-end Engineer",
"company_name": "EcubeLabs",
"detail_url": "https://www.theteams.kr/recruit/wanted/1258964",
"end_date": null,
"platform_name": "theteams",
"category_name": "웹 프론트엔드",
"stack": null,
"region": null,
"career": null
},
{
"title": "슈가힐에서 프로젝트 매니저를 찾습니다",
"company_name": "(주)슈가힐",
"detail_url": "https://www.theteams.kr/recruit/wanted/596521",
"end_date": null,
"platform_name": "theteams",
"category_name": "기타",
"stack": null,
"region": null,
"career": null
},
{
"title": "고속 성장 스타트업 업템포에서 실력 있는 프론트엔드, 백엔드 개발자님들을 모십니다.",
"company_name": "(주)업템포글로벌",
"detail_url": "https://www.theteams.kr/recruit/wanted/593486",
"end_date": null,
"platform_name": "theteams",
"category_name": "웹 프론트엔드",
"stack": null,
"region": null,
"career": null
},
{
"title": "Atlas Labs에서 모바일 어플리케이션 개발자/기획자를 찾습니다.",
"company_name": "Atlas Labs",
"detail_url": "https://www.theteams.kr/recruit/wanted/25233",
"end_date": null,
"platform_name": "theteams",
"category_name": "안드로이드",
"stack": null,
"region": null,
"career": null
},
{
"title": "헬스앤메디슨에서 java MVC 개발자를 찾습니다!",
"company_name": "주식회사 헬스앤메디슨",
"detail_url": "https://www.theteams.kr/recruit/wanted/26388",
"end_date": null,
"platform_name": "theteams",
"category_name": "안드로이드",
"stack": null,
"region": null,
"career": null
},
{
"title": "[숨고] Front-end Engineer",
"company_name": "(주)브레이브모바일",
"detail_url": "https://www.theteams.kr/recruit/wanted/29744",
"end_date": null,
"platform_name": "theteams",
"category_name": "웹 프론트엔드",
"stack": null,
"region": null,
"career": null
},
{
"title": "[숨고] Mobile App Engineer",
"company_name": "(주)브레이브모바일",
"detail_url": "https://www.theteams.kr/recruit/wanted/29745",
"end_date": null,
"platform_name": "theteams",
"category_name": "안드로이드",
"stack": null,
"region": null,
"career": null
},
{
"title": "프로모션 마케터",
"company_name": "패스트캠퍼스FCL",
"detail_url": "https://www.theteams.kr/recruit/wanted/61862",
"end_date": null,
"platform_name": "theteams",
"category_name": "소셜 채널 마케팅",
"stack": null,
"region": null,
"career": null
},
{
"title": "금방주식회사에서 react-native 개발자를 뽑습니다.",
"company_name": "금방주식회사",
"detail_url": "https://www.theteams.kr/recruit/wanted/25412",
"end_date": null,
"platform_name": "theteams",
"category_name": "안드로이드",
"stack": null,
"region": null,
"career": null
},
{
"title": "[인턴십] Software Development Engineer (자율주행 프로젝트)",
"company_name": "네이버랩스",
"detail_url": "https://www.theteams.kr/recruit/wanted/25261",
"end_date": null,
"platform_name": "theteams",
"category_name": "머신러닝/빅데이터",
"stack": null,
"region": null,
"career": null
},
{
"title": "[숨고] Back-end Engineer",
"company_name": "(주)브레이브모바일",
"detail_url": "https://www.theteams.kr/recruit/wanted/25192",
"end_date": null,
"platform_name": "theteams",
"category_name": "웹 백엔드",
"stack": null,
"region": null,
"career": null
},
{
"title": "톡톡 튀는 아이디어가 가득한 마케팅 광고 영상 콘텐츠 크리에이터 모집",
"company_name": "주식회사 모인(MOIN, Inc)",
"detail_url": "https://www.theteams.kr/recruit/wanted/24630",
"end_date": null,
"platform_name": "theteams",
"category_name": "콘텐츠 마케팅",
"stack": null,
"region": null,
"career": null
},
{
"title": "(주)와이피랩스에서 프로덕트 매니저(PM/PO)를 찾습니다!",
"company_name": "와이피랩스 (주)",
"detail_url": "https://www.theteams.kr/recruit/wanted/583778",
"end_date": null,
"platform_name": "theteams",
"category_name": "기타",
"stack": null,
"region": null,
"career": null
},
{
"title": "리필드 고객의 두피 건강을 케어 할 CX 매니저를 모십니다!",
"company_name": "(주) 콘스탄트",
"detail_url": "https://www.theteams.kr/recruit/wanted/555205",
"end_date": null,
"platform_name": "theteams",
"category_name": "고객지원",
"stack": null,
"region": null,
"career": null
},
{
"title": "Frontend Developer 신입/ 경력",
"company_name": "주식회사 콘스탄트",
"detail_url": "https://www.theteams.kr/recruit/wanted/1179722",
"end_date": null,
"platform_name": "theteams",
"category_name": "웹 프론트엔드",
"stack": null,
"region": null,
"career": null
},
{
"title": "헬스앤메디슨에서 동물적인 기획자를 캐스팅합니다!",
"company_name": "주식회사 헬스앤메디슨",
"detail_url": "https://www.theteams.kr/recruit/wanted/26142",
"end_date": null,
"platform_name": "theteams",
"category_name": "서비스기획",
"stack": null,
"region": null,
"career": null
},
{
"title": "[뷰메진]UI/UX 디자이너(경력 3년↑)",
"company_name": "주식회사 뷰메진",
"detail_url": "https://www.theteams.kr/recruit/wanted/1083655",
"end_date": null,
"platform_name": "theteams",
"category_name": "서버",
"stack": null,
"region": null,
"career": null
},
{
"title": "마케팅 CMO / 팀장급 인재를 모집합니다.",
"company_name": "(주)알파브라더스",
"detail_url": "https://www.theteams.kr/recruit/wanted/24655",
"end_date": null,
"platform_name": "theteams",
"category_name": "브랜드 마케팅",
"stack": null,
"region": null,
"career": null
},
{
"title": "마켓잇에서 웹/모바일 개발자를 모십니다",
"company_name": "마켓잇",
"detail_url": "https://www.theteams.kr/recruit/wanted/25095",
"end_date": null,
"platform_name": "theteams",
"category_name": "웹 백엔드",
"stack": null,
"region": null,
"career": null
},
{
"title": "Flutter 앱 개발자 모집합니다.",
"company_name": "주식회사TAPICK",
"detail_url": "https://www.theteams.kr/recruit/wanted/25484",
"end_date": null,
"platform_name": "theteams",
"category_name": "안드로이드",
"stack": null,
"region": null,
"career": null
},
{
"title": "프론트엔드 개발자를 채용합니다!",
"company_name": "(주)두꺼비세상",
"detail_url": "https://www.theteams.kr/recruit/wanted/25558",
"end_date": null,
"platform_name": "theteams",
"category_name": "웹 프론트엔드",
"stack": null,
"region": null,
"career": null
},
{
"title": "[스페이스워크] 알고리즘 엔지니어(경력 3년 이상)",
"company_name": "(주)더라이징스타헤딩",
"detail_url": "https://www.theteams.kr/recruit/wanted/25733",
"end_date": null,
"platform_name": "theteams",
"category_name": "웹 백엔드",
"stack": null,
"region": null,
"career": null
},
{
"title": "[헤딩보상금 100만원]배달의민족 침해대응 및 보안위협 분석 업무",
"company_name": "(주)더라이징스타헤딩",
"detail_url": "https://www.theteams.kr/recruit/wanted/26021",
"end_date": null,
"platform_name": "theteams",
"category_name": "시큐리티",
"stack": null,
"region": null,
"career": null
},
{
"title": "헬스앤메디슨에서 동물적인 기획자를 캐스팅합니다!",
"company_name": "주식회사 헬스앤메디슨",
"detail_url": "https://www.theteams.kr/recruit/wanted/26142",
"end_date": null,
"platform_name": "theteams",
"category_name": "서비스기획",
"stack": null,
"region": null,
"career": null
},
{
"title": "키덜트 시장을 함께 이끌 'Front-end 개발자'를 모십니다!",
"company_name": "(주)틴고랜드",
"detail_url": "https://www.theteams.kr/recruit/wanted/26237",
"end_date": null,
"platform_name": "theteams",
"category_name": "웹 프론트엔드",
"stack": null,
"region": null,
"career": null
},
{
"title": "Full Stack 풀스텍 개발자",
"company_name": "(주)뉴포트파트너스",
"detail_url": "https://www.theteams.kr/recruit/wanted/26261",
"end_date": null,
"platform_name": "theteams",
"category_name": "블록체인",
"stack": null,
"region": null,
"career": null
},
{
"title": "[에이플러스비(29CM)] UI/UX Designer 모집",
"company_name": "(주)더라이징스타헤딩",
"detail_url": "https://www.theteams.kr/recruit/wanted/26347",
"end_date": null,
"platform_name": "theteams",
"category_name": "UX/UI 디자인",
"stack": null,
"region": null,
"career": null
},
{
"title": "생명을 살리는 서비스를 구현하는 DOCL과 함께 성장할 프론트엔드 개발자를 모십니다!",
"company_name": "Doctors on the Cloud (DOCL)",
"detail_url": "https://www.theteams.kr/recruit/wanted/26396",
"end_date": null,
"platform_name": "theteams",
"category_name": "웹 프론트엔드",
"stack": null,
"region": null,
"career": null
},
{
"title": "백엔드 개발자",
"company_name": "패스트캠퍼스FCL",
"detail_url": "https://www.theteams.kr/recruit/wanted/61868",
"end_date": null,
"platform_name": "theteams",
"category_name": "웹 백엔드",
"stack": null,
"region": null,
"career": null
},
{
"title": "게임업계의 빅데이터를 다뤄보고 싶은 개발자를 찾습니다!",
"company_name": "GNA",
"detail_url": "https://www.theteams.kr/recruit/wanted/143037",
"end_date": null,
"platform_name": "theteams",
"category_name": "웹 백엔드",
"stack": null,
"region": null,
"career": null
},
{
"title": "[마이크로프트] 백엔드 개발자 채용",
"company_name": "(주)마이크로프트",
"detail_url": "https://www.theteams.kr/recruit/wanted/283521",
"end_date": null,
"platform_name": "theteams",
"category_name": "웹 백엔드",
"stack": null,
"region": null,
"career": null
},
{
"title": "[브랜드 디자이너 채용] 재미있는 선택을 함께 만들어갈 팀원을 기다립니다!",
"company_name": "(주)그리디파머스",
"detail_url": "https://www.theteams.kr/recruit/wanted/423628",
"end_date": null,
"platform_name": "theteams",
"category_name": "비주얼/그래픽 디자인",
"stack": null,
"region": null,
"career": null
},
{
"title": "[퍼포먼스 마케터 채용] 그리디파머스의 재미있는 선택을 함께 널리 알리 팀원을 모집합니다!",
"company_name": "(주)그리디파머스",
"detail_url": "https://www.theteams.kr/recruit/wanted/423629",
"end_date": null,
"platform_name": "theteams",
"category_name": "퍼포먼스 마케팅",
"stack": null,
"region": null,
"career": null
},
{
"title": "파티앱젠에서 기업홍보/마케팅 담당자를 찾습니다!",
"company_name": "(주)파티앱젠",
"detail_url": "https://www.theteams.kr/recruit/wanted/583824",
"end_date": null,
"platform_name": "theteams",
"category_name": "기타",
"stack": null,
"region": null,
"career": null
},
{
"title": "피노맥스에서 AI 개발자를 찾습니다!",
"company_name": "(주)피노맥스",
"detail_url": "https://www.theteams.kr/recruit/wanted/585643",
"end_date": null,
"platform_name": "theteams",
"category_name": "머신러닝/빅데이터",
"stack": null,
"region": null,
"career": null
},
{
"title": "시알티랩에서 서비스 기획자를 찾습니다!",
"company_name": "주식회사 시알티랩",
"detail_url": "https://www.theteams.kr/recruit/wanted/586011",
"end_date": null,
"platform_name": "theteams",
"category_name": "기타",
"stack": null,
"region": null,
"career": null
},
{
"title": "(주)패스트뷰에서 퍼포먼스 마케터를 찾습니다!",
"company_name": "㈜패스트뷰",
"detail_url": "https://www.theteams.kr/recruit/wanted/593487",
"end_date": null,
"platform_name": "theteams",
"category_name": "퍼포먼스 마케팅",
"stack": null,
"region": null,
"career": null
},
{
"title": "(주)패스트뷰에서 백엔드개발자를 찾습니다!",
"company_name": "㈜패스트뷰",
"detail_url": "https://www.theteams.kr/recruit/wanted/593489",
"end_date": null,
"platform_name": "theteams",
"category_name": "웹 백엔드",
"stack": null,
"region": null,
"career": null
},
{
"title": "Client Programmer",
"company_name": "㈜스토리타코",
"detail_url": "https://www.theteams.kr/recruit/wanted/593493",
"end_date": null,
"platform_name": "theteams",
"category_name": "게임",
"stack": null,
"region": null,
"career": null
},
{
"title": "모자이크에서 마케터를 찾습니다!",
"company_name": "주식회사 모자이크",
"detail_url": "https://www.theteams.kr/recruit/wanted/593551",
"end_date": null,
"platform_name": "theteams",
"category_name": "브랜드 마케팅",
"stack": null,
"region": null,
"career": null
},
{
"title": "엔코위더스에서 Frontend Developer를 찾습니다!",
"company_name": "엔코위더스",
"detail_url": "https://www.theteams.kr/recruit/wanted/593618",
"end_date": null,
"platform_name": "theteams",
"category_name": "웹 프론트엔드",
"stack": null,
"region": null,
"career": null
},
{
"title": "엔코위더스에서 Backend Develper를 찾습니다!",
"company_name": "엔코위더스",
"detail_url": "https://www.theteams.kr/recruit/wanted/593624",
"end_date": null,
"platform_name": "theteams",
"category_name": "웹 백엔드",
"stack": null,
"region": null,
"career": null
},
{
"title": "엔코위더스에서 Project Manager를 찾습니다!",
"company_name": "엔코위더스",
"detail_url": "https://www.theteams.kr/recruit/wanted/593626",
"end_date": null,
"platform_name": "theteams",
"category_name": "기타",
"stack": null,
"region": null,
"career": null
},
{
"title": "엔코위더스에서 Growth Marketer를 찾습니다!",
"company_name": "엔코위더스",
"detail_url": "https://www.theteams.kr/recruit/wanted/593627",
"end_date": null,
"platform_name": "theteams",
"category_name": "기타",
"stack": null,
"region": null,